-
Notifications
You must be signed in to change notification settings - Fork 77
/
package.json
47 lines (47 loc) · 1.5 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
{
"name": "react-umeditor",
"version": "1.0.15",
"description": "React Editor like UMEditor",
"main": "lib/editor.js",
"files": [
"lib",
"dist"
],
"scripts": {
"clean": "rm -rf ./lib",
"clean-win": "del lib /Q",
"copy": "cp -R images/. dist/images && cp -R less/. dist/less && cp -R third-part/. dist/third-part",
"build": "npm run copy && NODE_ENV=production & babel ./src --out-dir ./lib ",
"copy-win": "xcopy less dist\\less\\ /s /y && xcopy images dist\\images\\ /s /y && xcopy third-part dist\\third-part\\ /s /y",
"build-win": " npm run copy-win && set NODE_ENV=production & babel src --out-dir lib",
"test": "mocha test/{,**/}{,**/}*.js --compilers js:babel-register --com --require ./test/setup.js"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.24.1",
"jquery": "^3.1.1",
"react": "^16.4.2",
"react-dom": "^16.4.2"
},
"repository": {
"type": "git",
"url": "git+https://github.com/liuhong1happy/react-umeditor.git"
},
"keywords": [
"react",
"react-umeditor"
],
"author": "Holly Liu",
"license": "MIT",
"bugs": {
"url": "https://github.com/liuhong1happy/react-umeditor/issues"
},
"homepage": "https://github.com/liuhong1happy/react-umeditor#readme",
"dependencies": {
"classnames": "^2.2.6"
}
}