-
Notifications
You must be signed in to change notification settings - Fork 227
/
package.json
104 lines (104 loc) · 3.26 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
{
"name": "redux-form-material-ui",
"version": "4.3.4",
"description": "An adapter between Redux Form and Material UI components",
"main": "./lib/index.js",
"jsnext:main": "./es/index.js",
"repository": {
"type": "git",
"url": "https://github.com/erikras/redux-form-material-ui"
},
"scripts": {
"build": "npm run build:lib && npm run build:es && npm run build:umd && npm run build:umd:min",
"build:es": "cross-env BABEL_ENV=es babel src --out-dir es",
"build:lib": "babel src --out-dir lib",
"build:umd": "cross-env NODE_ENV=development webpack src/index.js dist/redux-form-material-ui.js",
"build:umd:min": "cross-env NODE_ENV=production webpack src/index.js dist/redux-form-material-ui.min.js",
"clean": "rimraf dist lib",
"lint": "eslint src",
"prepublish": "npm run test && npm run lint && npm run clean && npm run build",
"test": "mocha --compilers js:babel-register --recursive --recursive \"src/**/__tests__/*\" --require src/__tests__/setup.js",
"test:watch": "npm test -- --watch",
"test:cov": "cross-env NODE_ENV=test nyc --reporter=lcov --reporter=text npm test",
"test:codecov": "cat ./coverage/lcov.info | ./node_modules/codecov.io/bin/codecov.io.js"
},
"keywords": [
"redux",
"redux-form",
"material-ui",
"redux-form-material-ui",
"adapter"
],
"author": "Erik Rasmussen <rasmussenerik@gmail.com> (http://github.com/erikras)",
"license": "MIT",
"bugs": {
"url": "https://github.com/erikras/redux-form-material-ui/issues"
},
"homepage": "https://github.com/erikras/redux-form-material-ui",
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-core": "^6.24.1",
"babel-eslint": "^7.2.2",
"babel-loader": "^7.1.2",
"babel-plugin-istanbul": "^4.1.1",
"babel-plugin-syntax-async-functions": "^6.5.0",
"babel-plugin-transform-es2015-modules-commonjs": "^6.24.1",
"babel-plugin-transform-regenerator": "^6.24.1",
"babel-preset-es2015-no-commonjs": "0.0.2",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"babel-register": "^6.24.1",
"codecov.io": "^0.1.6",
"cross-env": "^5.0.5",
"eslint": "^4.5.0",
"eslint-config-react-app": "^2.0.0",
"eslint-plugin-flowtype": "^2.30.4",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^6.0.2",
"eslint-plugin-react": "^7.3.0",
"expect": "^1.20.2",
"expect-jsx": "^3.0.0",
"isparta": "^4.0.0",
"jsdom": "^11.2.0",
"lodash.noop": "^3.0.1",
"material-ui": "^0.20.0",
"mocha": "^3.2.0",
"mocha-lcov-reporter": "^1.3.0",
"nyc": "^10.2.0",
"prettier": "^1.1.0",
"react": "^15.5.4",
"react-addons-test-utils": "^15.5.1",
"react-dom": "^15.5.4",
"react-tap-event-plugin": "^2.0.1",
"rimraf": "^2.6.1",
"webpack": "^3.5.5"
},
"peerDependencies": {
"material-ui": "^0.19.0 || ^0.20.0 || 1",
"react": "^15.0.0 || ^16.0.0 ",
"redux-form": "^6.0.0 || ^7.0.0"
},
"files": [
"README.md",
"lib",
"es",
"dist",
"index.d.ts"
],
"nyc": {
"include": [
"src/**/*.js"
],
"sourceMap": false,
"instrument": false
},
"npmName": "redux-form-material-ui",
"npmFileMap": [
{
"basePath": "/dist/",
"files": [
"*.js"
]
}
]
}