-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
69 lines (69 loc) · 2.06 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
64
65
66
67
68
69
{
"name": "simple-redux-form",
"version": "0.0.5",
"description": "This is simplest redux form",
"main": "./lib/index.js",
"scripts": {
"build": "npm run build:lib && npm run build:npm && npm run build:min",
"build:lib": "babel src --out-dir lib",
"build:npm": "NODE_ENV=development webpack src/index.js dist/simple-redux-form.js",
"build:min": "NODE_ENV=production webpack src/index.js dist/simple-redux-form.min.js",
"test": "mocha --compilers js:babel-register --recursive 'src/__test__/*'",
"test:coverage": "npm run build:lib && istanbul cover _mocha -- recursive 'lib/__test__/*'",
"test:lint": "eslint src",
"show:coverage": "open coverage/lcov-report/index.html",
"clean": "rimraf lib coverage dist"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mihirsoni/simple-redux-form.git"
},
"keywords": [
"react",
"reactjs",
"flux",
"redux",
"react-redux",
"tiny-redux-form",
"simple-redux-form",
"small-redux-form",
"redux-form",
"redux-form-validations",
"forms",
"decorator"
],
"bugs": {
"url": "https://github.com/mihirsoni/simple-redux-form/issues"
},
"npmName": "simple-redux-form",
"dependencies": {
"deep-equal": "^1.0.1",
"react": "^15.3.0",
"react-redux": "^4.4.5",
"redux": "^3.5.2"
},
"devDependencies": {
"babel": "^6.5.2",
"babel-cli": "^6.11.4",
"babel-core": "^6.13.2",
"babel-eslint": "^6.1.2",
"babel-loader": "^6.2.4",
"babel-preset-es2015": "^6.13.2",
"babel-preset-react": "^6.11.1",
"babel-preset-stage-0": "^6.5.0",
"babel-register": "^6.11.6",
"deep-freeze": "0.0.1",
"eslint": "^3.2.2",
"eslint-config-airbnb": "^10.0.0",
"eslint-plugin-import": "^1.12.0",
"eslint-plugin-jsx-a11y": "^2.0.1",
"eslint-plugin-react": "^6.0.0",
"expect": "^1.20.2",
"istanbul": "^0.4.4",
"mocha": "^3.0.1",
"rimraf": "^2.5.4",
"webpack": "^1.13.1"
},
"author": "Mihir Soni <mihirsoni.123@gmail.com> (http://mihir.pro)",
"license": "MIT"
}