-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 1.06 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
{
"name": "ci-image-uploader",
"version": "0.0.0",
"description": "Javascript Image Upload Helper",
"main": "index.js",
"scripts": {
"build": "npm run build:lib && npm run build:amd",
"build:lib": "webpack -p --config ./webpack.config.js",
"build:amd": "webpack -p --config ./webpack.config.amd.js",
"demo": "webpack-dev-server --host $LOCALHOST --open --inline --config demo/webpack.config.js --content-base demo/",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/iburning/ci-image-uploader.git"
},
"keywords": [
"image",
"canvas"
],
"author": "burning <iburning@live.cn>",
"license": "ISC",
"bugs": {
"url": "https://github.com/iburning/ci-image-uploader/issues"
},
"homepage": "https://github.com/iburning/ci-image-uploader#readme",
"devDependencies": {
"babel-core": "^6.18.0",
"babel-loader": "^6.2.8",
"babel-plugin-transform-runtime": "^6.15.0",
"babel-preset-es2015": "^6.18.0",
"babel-runtime": "^6.18.0"
}
}