-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
76 lines (76 loc) · 1.64 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
{
"name": "bottender-xstate",
"description": "Finite State Machines in Bottender using xstate",
"license": "MIT",
"version": "0.5.1",
"main": "src/index.js",
"files": [
"src"
],
"scripts": {
"lint": "eslint .",
"lint:fix": "yarn run lint -- --fix",
"lint:staged": "lint-staged",
"test": "yarn run lint && yarn run testonly",
"testonly": "jest",
"testonly:cov": "jest --coverage --runInBand --forceExit",
"testonly:watch": "jest --runInBand --watch"
},
"dependencies": {
"lodash": "^4.17.11",
"warning": "^4.0.2",
"xstate": "4.0.1"
},
"devDependencies": {
"eslint": "^5.9.0",
"eslint-config-prettier": "^3.3.0",
"eslint-config-yoctol-base": "^0.18.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-prettier": "^3.0.0",
"eslint-plugin-sort-imports-es6-autofix": "^0.3.0",
"husky": "^1.1.4",
"jest": "^23.6.0",
"lint-staged": "^8.0.5",
"prettier": "^1.15.2",
"prettier-package-json": "^2.0.1"
},
"keywords": [
"bot",
"bottender",
"state-machine",
"xstate"
],
"engines": {
"node": ">=7.6"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"jest": {
"coverageDirectory": "./coverage/",
"transformIgnorePatterns": [
"/node_modules/",
"lib"
],
"testPathIgnorePatterns": [
"/node_modules/",
"lib"
],
"testEnvironment": "node",
"timers": "fake",
"resetModules": true,
"resetMocks": true
},
"lint-staged": {
"*.js": [
"eslint --fix",
"git add"
],
"package.json": [
"prettier-package-json --write",
"git add"
]
}
}