-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
102 lines (102 loc) · 3.13 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
{
"name": "form-material-ui",
"version": "4.2.1",
"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/ninjavungve/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/form-material-ui.js",
"build:umd:min": "cross-env NODE_ENV=production webpack src/index.js dist/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",
"form-material-ui",
"adapter"
],
"author": "Erik Rasmussen <rasmussenerik@gmail.com> (http://github.com/erikras)",
"license": "MIT",
"bugs": {
"url": "https://github.com/ninjavungve/form-material-ui/issues"
},
"homepage": "https://github.com/ninjavungve/form-material-ui",
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-core": "^6.24.1",
"babel-eslint": "^7.2.2",
"babel-loader": "^6.4.1",
"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": "^4.0.0",
"eslint": "^3.19.0",
"eslint-config-react-app": "^0.6.2",
"eslint-plugin-flowtype": "^2.30.4",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^4.0.0",
"eslint-plugin-react": "^6.10.3",
"expect": "^1.20.2",
"expect-jsx": "^3.0.0",
"isparta": "^4.0.0",
"jsdom": "^9.12.0",
"lodash.noop": "^3.0.1",
"material-ui": "^0.17.3",
"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": "^2.3.3"
},
"peerDependencies": {
"react": "15",
"redux-form": "6"
},
"files": [
"README.md",
"lib",
"es",
"dist"
],
"nyc": {
"include": [
"src/**/*.js"
],
"sourceMap": false,
"instrument": false
},
"npmName": "form-material-ui",
"npmFileMap": [
{
"basePath": "/dist/",
"files": [
"*.js"
]
}
]
}