-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
45 lines (45 loc) · 1007 Bytes
/
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
{
"name": "validstate",
"version": "1.1.3",
"description": "Seamless and easy Redux state Validation",
"main": "dist/index.js",
"scripts": {
"build": "babel src --out-dir dist",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/lifechurch/validstate.git"
},
"keywords": [
"React",
"Redux",
"Validation",
"State"
],
"author": "Scott Hill <[email protected]>",
"contributors": [
"Cody McMichael <[email protected]>"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/lifechurch/validstate/issues"
},
"homepage": "https://github.com/lifechurch/validstate#readme",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"jest": "^21.2.1",
"redux": "^3.7.2",
"hoek": "^4.2.1"
},
"dependencies": {
"lodash.clonedeep": "^4.5.0"
},
"jest": {
"roots": [
"<rootDir>/tests"
]
}
}