-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
80 lines (80 loc) · 1.94 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
79
80
{
"name": "bottender-botanalytics",
"description": "Middleware for using Botanalytics with Bottender.",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/bottenderjs/bottender-botanalytics.git"
},
"version": "0.2.1",
"main": "lib/index.js",
"files": [
"express.js",
"koa.js",
"lib",
"micro.js",
"restify.js"
],
"scripts": {
"build": "npm run clean && babel src -d lib --ignore __tests__",
"clean": "rimraf lib",
"precommit": "lint-staged",
"lint": "eslint src",
"lint:fix": "npm run lint -- --fix",
"lint:staged": "lint-staged",
"prepublish": "npm run build",
"test": "npm run lint:fix && npm run testonly",
"testonly": "jest",
"testonly:cov": "jest --coverage --runInBand --forceExit",
"testonly:watch": "jest --watch",
"preversion": "npm test"
},
"dependencies": {
"botanalytics": "^2.0.3"
},
"peerDependencies": {
"bottender": ">= 0.14.8"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-eslint": "^8.0.3",
"babel-jest": "^21.2.0",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.6.1",
"eslint": "^4.12.1",
"eslint-config-prettier": "^2.9.0",
"eslint-config-yoctol-base": "^0.14.1",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-prettier": "^2.3.1",
"husky": "^0.14.3",
"jest": "^21.2.1",
"lint-staged": "^6.0.0",
"prettier": "^1.8.2",
"prettier-package-json": "^1.4.0",
"rimraf": "^2.6.2"
},
"keywords": [
"botanalytics",
"bottender"
],
"engines": {
"node": ">=7.6"
},
"jest": {
"testEnvironment": "node",
"timers": "fake",
"resetModules": true,
"resetMocks": true
},
"lint-staged": {
"package.json": [
"prettier-package-json --write",
"git add"
],
"*.js": [
"eslint --fix",
"git add"
]
}
}