-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.53 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"name": "qc-redux-form_utils",
"version": "0.0.0",
"description": "A set of utilities for working with redux-form.",
"keywords": [
"errors",
"flatten",
"redux-form",
"utilities",
"utility"
],
"author": {
"name": "Danny Hurlburt",
"url": "https://github.com/dhurlburtusa"
},
"homepage": "https://github.com/hypersoftllc/qc-redux-form_utils#readme",
"license": "ISC",
"browserslist": [
"> 0.5%",
"Last 2 major versions",
"Firefox ESR"
],
"engines": {
"node": ">=4.0.0",
"npm": ">=3.0.0"
},
"files": [
"lib/",
"flattenErrors.js",
"index.js"
],
"main": "index.js",
"bugs": {
"url": "https://github.com/hypersoftllc/qc-redux-form_utils/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hypersoftllc/qc-redux-form_utils.git"
},
"scripts": {
"build": "cross-env NODE_ENV=production node scripts/build.js",
"build:dev": "node scripts/build.js",
"clean": "rimraf flattenErrors.js index.js lib/",
"coverage": "jest --coverage",
"coveralls": "cat ./coverage/lcov.info | coveralls",
"lint": "eslint --max-warnings 0 src/",
"prepare": "npm run build",
"test": "jest --watch",
"travisci": "npm run coverage"
},
"dependencies": {},
"devDependencies": {
"babel-core": "^6.26.0",
"babel-jest": "^20.0.3",
"babel-preset-env": "^1.6.1",
"coveralls": "^3.0.0",
"cross-env": "^5.1.3",
"eslint": "^4.16.0",
"fs-extra": "^3.0.1",
"jest": "^20.0.4",
"rimraf": "^2.6.2"
}
}