forked from mjstahl/use-state-machine
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.06 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
{
"name": "use-state-machine",
"version": "3.0.5",
"description": "Use Finite State Machines with React Hooks",
"main": "index.js",
"scripts": {
"lint": "standard --fix",
"test": "npm run lint && jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mjstahl/use-state-machine.git"
},
"keywords": [
"react",
"hooks",
"fsm",
"statemachine",
"state"
],
"author": "Mark Stahl <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/mjstahl/use-state-machine/issues"
},
"homepage": "https://github.com/mjstahl/use-state-machine#readme",
"dependencies": {
"lodash.camelcase": "^4.3.0",
"lodash.capitalize": "^4.2.1",
"react": "^16.9.0"
},
"devDependencies": {
"@babel/preset-env": "^7.5.5",
"@babel/preset-react": "^7.0.0",
"babel-jest": "^24.9.0",
"babel-polyfill": "^6.26.0",
"jest": "^24.9.0",
"react-dom": "^16.9.0",
"react-testing-library": "^5.9.0",
"standard": "^12.0.1"
},
"standard": {
"env": [
"jest"
]
}
}