This repository was archived by the owner on Mar 1, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 1.98 KB
/
package.json
File metadata and controls
81 lines (81 loc) · 1.98 KB
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
{
"name": "ufec",
"version": "2.1.0",
"description": "ustack front end component",
"main": "lib/ufec.js",
"bin": "bin/ufec.js",
"scripts": {
"remove": "npm remove antd && git reset && git checkout .babelrc",
"build": "rm -rf lib/ufec.js && rollup -c rollup.config.js",
"dev": "rm -rf lib/ufec.js && rollup -c rollup.config.js -w ",
"git": "git add .",
"lint": "uslint bin/ components/ utils/",
"patch": "relix --patch",
"minor": "relix --minor",
"major": "relix --major",
"relix": "relix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/unitedstack/ufec.git"
},
"keywords": [
"ustack",
"front-end",
"component"
],
"author": "PengJiyuan",
"license": "MIT",
"bugs": {
"url": "https://github.com/unitedstack/ufec/issues"
},
"homepage": "https://github.com/unitedstack/ufec#readme",
"peerDependencies": {
"react": "^16.4.2",
"react-dom": "^16.4.2",
"antd": "^3.10.0"
},
"dependencies": {
"chalk": "^2.4.1",
"codemirror": "^5.41.0",
"commander": "^2.16.0",
"emitry": "^1.2.0",
"glob": "^7.1.2",
"history": "^4.7.2",
"source-map": "^0.7.3"
},
"devDependencies": {
"babel-core": "^6.1.12",
"babel-eslint": "^8.0.1",
"babel-loader": "^7.1.5",
"babel-plugin-external-helpers": "^6.22.0",
"babel-plugin-import": "^1.8.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.6.0",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"pre-commit": "^1.2.2",
"react": "^16.4.2",
"react-dom": "^16.4.2",
"react-router-dom": "^4.3.1",
"relix": "^1.1.1",
"rollup": "^0.58.2",
"rollup-plugin-babel": "^3.0.4",
"rollup-plugin-json": "^2.3.0",
"rollup-plugin-node-resolve": "^3.3.0",
"rsvp": "^4.8.3",
"uslint": "^0.4.1"
},
"pre-commit": [
"lint",
"remove",
"build",
"git"
],
"files": [
"bin/",
"iconfonts/",
"lib/",
"style/"
]
}