-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.08 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
{
"name": "redux-validate",
"version": "0.2.0",
"description": "Easy validation for redux-form",
"scripts": {
"prebuild": "rimraf index.js",
"build": "babel src -d .",
"postbuild": "git add . --all",
"pretest": "npm run lint && npm run build",
"test": "mocha",
"start": "set DIRECORY='src/'&& mocha --watch --reporter min",
"lint": "eslint src test"
},
"pre-commit": "test",
"repository": {
"type": "git",
"url": "http://github.com/ashtonwar/redux-validate.git"
},
"author": "Ashton War <[email protected]> (http://ashtonwar.com)",
"license": "ISC",
"homepage": "http://github.com/ashtonwar/redux-validate",
"dependencies": {
"lodash": "^4.6.1"
},
"devDependencies": {
"babel-cli": "6.11.4",
"babel-core": "6.11.4",
"babel-eslint": "6.1.2",
"babel-preset-es2015": "6.9.0",
"babel-preset-stage-0": "6.5.0",
"eslint": "2.13.1",
"eslint-config-permissible": "1.0.6",
"expect": "1.20.2",
"mocha": "2.5.3",
"mocha-clean": "1.0.0",
"pre-commit": "1.1.3",
"react": "15.2.1",
"rimraf": "2.5.4"
}
}