-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.35 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
{
"name": "messenger-batch",
"description": "Gracefully batching messenger requests.",
"license": "MIT",
"version": "0.3.1",
"main": "src/index.js",
"scripts": {
"lint": "eslint src",
"lint:fix": "npm run lint -- --fix",
"lint:staged": "lint-staged",
"test": "npm run lint:fix && npm run testonly",
"testonly": "jest",
"testonly:cov": "jest --coverage --runInBand --forceExit",
"testonly:watch": "jest --watch",
"preversion": "npm test"
},
"dependencies": {
"invariant": "^2.2.4"
},
"devDependencies": {
"eslint": "^6.3.0",
"eslint-config-yoctol-base": "^0.21.2",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-prettier": "^3.1.0",
"eslint-plugin-sort-imports-es6-autofix": "^0.5.0",
"husky": "^3.0.5",
"jest": "^24.9.0",
"lint-staged": "^9.2.5",
"messaging-api-messenger": "^0.8.2",
"prettier": "^1.18.2",
"prettier-package-json": "^2.1.0"
},
"keywords": [
"batch",
"bottender",
"facebook",
"messaging-apis",
"messenger"
],
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"jest": {
"testEnvironment": "node",
"timers": "fake",
"resetMocks": true
},
"lint-staged": {
"*.js": [
"eslint --fix",
"git add"
],
"package.json": [
"prettier-package-json --write",
"git add"
]
}
}