-
Notifications
You must be signed in to change notification settings - Fork 78
/
package.json
42 lines (42 loc) · 1.13 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
{
"name": "react-state-museum",
"version": "0.0.0",
"description": "A whirlwind tour of React state management systems by example",
"main": "index.js",
"scripts": {
"test": "node_modules/mocha/bin/_mocha ./test/index.js",
"test:all": "node_modules/mocha/bin/_mocha ./test/index.js --exhaustive",
"tryupdate": "updtr -u npm",
"contributors:add": "all-contributors add",
"contributors:generate": "all-contributors generate",
"contributors:check": "all-contributors check"
},
"directories": {
"test": "test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/GantMan/ReactStateMuseum.git"
},
"keywords": [
"react",
"state",
"museum"
],
"author": "Gant Laborde <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/GantMan/ReactStateMuseum/issues"
},
"homepage": "https://github.com/GantMan/ReactStateMuseum#readme",
"devDependencies": {
"all-contributors-cli": "^5.4.0",
"bluebird": "^3.5.2",
"execa": "^1.0.0",
"mocha": "^5.2.0",
"updtr": "^3.1.0"
},
"dependencies": {
"tiny-atom": "^3.4.0"
}
}