-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
78 lines (78 loc) · 1.66 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "adonisjs-mixpanel",
"version": "0.1.1",
"description": "An addon/plugin package to provide Mixpanel data collection and tracking services in AdonisJS 4.0+",
"main": "index.js",
"files": [
"src",
"config",
"providers",
"instructions.js",
"instructions.md"
],
"directories": {
"test": "test"
},
"engines": {
"node": ">=8.0"
},
"scripts": {
"lint": "standard",
"pretest": "npm run lint",
"test": "nyc node japaFile.js",
"test:win": "node ./node_modules/japa-cli/index.js",
"coverage": "nyc report --reporter=text-lcov | coveralls"
},
"keywords": [
"tracking",
"data",
"funnels",
"engagement",
"API",
"adonis",
"events",
"people",
"mixpanel",
"adonisjs",
"adonis-framework"
],
"author": "StitchNG <stitchnig@gmail.com> (https://twitter.com/stitchappn)",
"license": "MIT",
"nyc": {
"exclude": [
"test"
]
},
"standard": {
"globals": [
"use",
"test"
]
},
"dependencies": {
"@adonisjs/generic-exceptions": "^2.0.1",
"mixpanel": "^0.10.3",
"debug": "^3.1.2"
},
"peerDependencies": {
"adonisjs-extensions": "^0.0.11"
},
"devDependencies": {
"@adonisjs/fold": "^4.0.9",
"@adonisjs/sink": "^1.0.6",
"coveralls": "^3.0.2",
"japa": "^2.0.5",
"japa-cli": "^1.0.1",
"nyc": "^13.0.1",
"semver": "^5.5.0",
"standard": "^12.0.1"
},
"repository": {
"type": "git",
"url": "https://github.com/stitchng/adonis-mixpanel.git"
},
"bugs": {
"url": "https://github.com/stitchng/adonis-mixpanel/issues"
},
"homepage": "https://github.com/stitchng/adonis-mixpanel#readme"
}