-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.16 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
{
"name": "bottender-form",
"description": "An experimental package for handling conversational form with Bottender.",
"license": "MIT",
"version": "0.2.1",
"main": "src/index.js",
"scripts": {
"precommit": "lint-staged",
"lint": "eslint src examples",
"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": {
"lodash": "^4.17.4",
"warning": "^3.0.0"
},
"devDependencies": {
"eslint": "^4.16.0",
"eslint-config-yoctol-base": "^0.15.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-prettier": "^2.5.0",
"husky": "^0.14.3",
"jest": "^22.1.4",
"lint-staged": "^6.1.0",
"prettier": "^1.10.2",
"prettier-package-json": "^1.4.0"
},
"keywords": [
"bottender",
"conversational-form",
"form"
],
"lint-staged": {
"*.js": [
"eslint --fix",
"git add"
],
"package.json": [
"prettier-package-json --write",
"git add"
]
}
}