-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.3 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
{
"name": "qingcloud-json-schema-form",
"version": "0.0.1",
"description": "Form generator for qingcloud customized json-schema",
"main": "dist/index.js",
"module": "src/index.js",
"directories": {
"test": "test"
},
"scripts": {
"test": "jest",
"build": "rollup -c",
"precommit": "npm test && lint-staged",
"prepare": "npm run build"
},
"lint-staged": {
"*.{js,jsx,md}": [
"prettier --write",
"git add"
]
},
"keywords": [
"json-schema",
"form generator",
"react",
"backbone"
],
"author": "sunnyw <[email protected]>",
"license": "MIT",
"jest": {
"bail": true,
"moduleNameMapper": {
"<src>/(.+)$": "<rootDir>/src/$1"
}
},
"dependencies": {},
"devDependencies": {
"@babel/core": "^7.4.3",
"@babel/plugin-proposal-class-properties": "^7.4.0",
"@babel/plugin-proposal-export-default-from": "^7.2.0",
"@babel/preset-env": "^7.4.3",
"@babel/preset-react": "^7.0.0",
"babel-loader": "^8.0.5",
"husky": "^1.3.1",
"jest": "^24.7.1",
"lint-staged": "^8.1.5",
"prettier": "^1.17.0",
"prop-types": "^15.7.2",
"react": "^16.8.6",
"rollup": "^1.10.1",
"rollup-plugin-babel": "^4.3.2",
"rollup-plugin-commonjs": "^9.3.4",
"rollup-plugin-node-resolve": "^4.2.3"
}
}