-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
72 lines (72 loc) · 2.22 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
{
"name": "formik-material-fields",
"version": "0.0.6",
"description": "A set of material style fields for formik",
"main": "lib/index.js",
"module": "es/index.js",
"directories": {
"test": "tests"
},
"scripts": {
"build:commonjs": "cross-env BABEL_ENV=commonjs babel src --out-dir lib --presets=@babel/preset-env,@babel/preset-react",
"build:es": "babel src --out-dir es",
"build:umd": "cross-env NODE_ENV=development rollup -c -o dist/formik-material-fields.js",
"build:umd:min": "cross-env NODE_ENV=production rollup -c -o dist/formik-material-fields.min.js",
"build": "npm run build:commonjs && npm run build:es && npm run build:umd && npm run build:umd:min",
"clean": "rimraf lib dist es coverage",
"prepare": "npm run clean && npm run build",
"dev": "rollup -c -w",
"test": "node tests/test.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/daixianceng/formik-material-fields.git"
},
"keywords": [
"formik",
"material",
"form",
"field"
],
"author": {
"name": "Cosmo",
"email": "[email protected]"
},
"license": "FSB License",
"bugs": {
"url": "https://github.com/daixianceng/formik-material-fields/issues"
},
"homepage": "https://github.com/daixianceng/formik-material-fields#readme",
"peerDependencies": {
"@material-ui/core": ">=3",
"formik": ">=1",
"react": "^16.3.0",
"react-dom": "^16.3.0"
},
"dependencies": {
"classnames": "^2.2.6",
"prop-types": "^15.6.2"
},
"devDependencies": {
"@babel/cli": "^7.1.5",
"@babel/core": "^7.1.6",
"@babel/plugin-proposal-class-properties": "^7.1.0",
"@babel/preset-env": "^7.1.6",
"@babel/preset-react": "^7.0.0",
"babel-eslint": "^10.0.1",
"braces": "^3.0.2",
"cross-env": "^5.2.0",
"eslint": "^5.16.0",
"eslint-config-prettier": "^5.0.0",
"eslint-plugin-prettier": "^3.1.0",
"eslint-plugin-react": "^7.13.0",
"prettier": "^1.18.2",
"rimraf": "^2.6.2",
"rollup-plugin-babel": "^4.0.3-0",
"rollup-plugin-commonjs": "^9.2.0",
"rollup-plugin-eslint": "^6.0.0",
"rollup-plugin-node-resolve": "^3.4.0",
"rollup-plugin-replace": "^2.1.0",
"rollup-plugin-uglify": "^6.0.0"
}
}