forked from longtian/qiniu-webpack-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 2.09 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
{
"name": "qiniu-webpack",
"version": "0.5.0",
"description": "Webpack plugin for Qiniu cloud storage",
"main": "index.js",
"scripts": {
"release:minor": "npm run compile && npm version minor && npm publish --reg=https://registry.npmjs.com",
"release:patch": "npm run compile && npm version patch && npm publish --reg=https://registry.npmjs.com",
"compile": "rimraf example/public && rimraf lib && babel src --copy-files --source-maps --out-dir lib",
"example:dev": "npm run-script compile && webpack -d --config example/webpack.dev.js",
"example:production": "npm run-script compile && NODE_ENV=production webpack -p --config example/webpack.production.js",
"eslint": "eslint src",
"test:coveralls": "npm run test && cat ./coverage/lcov.info | coveralls && rm -rf ./coverage",
"test": "jest"
},
"jest": {
"collectCoverage": true,
"collectCoverageFrom": [
"src/**/*"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/wjh000123/qiniu-webpack-plugin.git"
},
"keywords": [
"qiniu",
"webpack",
"plugin"
],
"author": "wjh000123",
"license": "MIT",
"bugs": {
"url": "https://github.com/wjh000123/qiniu-webpack-plugin/issues"
},
"homepage": "https://github.com/wjh000123/qiniu-webpack-plugin#readme",
"dependencies": {
"promise": "^7.1.1",
"qiniu": "^6.1.9",
"slash": "^1.0.0"
},
"devDependencies": {
"babel-cli": "^6.6.5",
"babel-core": "^6.18.2",
"babel-jest": "^17.0.2",
"babel-loader": "^6.2.4",
"babel-preset-es2015": "^6.6.0",
"babel-preset-react": "^6.5.0",
"babel-preset-stage-0": "^6.5.0",
"bootstrap": "^3.3.6",
"coveralls": "^2.11.15",
"css-loader": "^0.26.1",
"eslint": "^3.11.1",
"eslint-config-airbnb": "^13.0.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^2.2.3",
"eslint-plugin-react": "^6.8.0",
"file-loader": "^0.9.0",
"jest": "^17.0.3",
"moment": "^2.12.0",
"react": "^15.4.1",
"react-dom": "^15.4.1",
"rimraf": "^2.5.2",
"style-loader": "^0.13.0",
"webpack": "^1.12.14"
}
}