-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1.11 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
{
"name": "validate-redux-form",
"version": "0.2.0",
"description": "",
"main": "compiled/index.js",
"scripts": {
"compile": "babel --presets es2015 -d compiled/ src/",
"prepublish": "npm run compile",
"test": "nyc --reporter=html --reporter=text-lcov > coverage.lcov mocha --compilers js:babel-core/register && npm run lint",
"lint": "standard src/** && standard --global it --global describe test/**",
"codecov": "codecov"
},
"author": "Manuel Fuchs ([email protected])",
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com/malax/validate-redux-form.git"
},
"bugs": {
"url": "https://github.com/Malax/validate-redux-form/issues"
},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-core": "^6.24.1",
"babel-preset-es2015": "^6.24.1",
"chai": "^3.5.0",
"codecov": "^2.1.0",
"mocha": "^3.2.0",
"nyc": "^10.2.0",
"standard": "^10.0.2"
},
"dependencies": {
"lodash.frompairs": "^4.0.1",
"lodash.isempty": "^4.4.0",
"lodash.isfunction": "^3.0.8",
"lodash.isobject": "^3.0.2",
"lodash.pairs": "^3.0.1"
}
}