forked from MikaAK/s3-plugin-webpack
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.65 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
{
"name": "webpack-s3-plugin",
"version": "1.0.0-rc.0",
"description": "Uploads compiled assets to s3 after build",
"main": "dist/s3_plugin.js",
"scripts": {
"build": "webpack",
"prepublish": "npm run lint && npm run test && npm run build",
"test": "NODE_ENV='test' mocha -t 10000 --compilers js:babel-register",
"lint": "eslint ./src ./test",
"watch": "webpack --watch",
"prep:major": "npm run build && npm version major",
"prep:minor": "npm run build && npm version minor",
"prep:patch": "npm run build && npm version patch"
},
"repository": {
"type": "git",
"url": "[email protected]:webpack-contrib/s3-plugin-webpack.git"
},
"keywords": [
"s3",
"webpack",
"node",
"upload",
"production"
],
"author": "Mika Kalathil",
"license": "MIT",
"bugs": {
"url": "https://github.com/webpack-contrib/s3-plugin-webpack/issues"
},
"homepage": "https://github.com/webpack-contrib/s3-plugin-webpack",
"dependencies": {
"aws-sdk": "^2.4.1",
"cdnizer": "^1.1.5",
"lodash": "^4.13.0",
"progress": "^1.1.8",
"recursive-readdir": "^2.0.0",
"s3": "^4.4.0"
},
"devDependencies": {
"babel": "^6.23.0",
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-loader": "^6.4.1",
"babel-preset-es2015": "^6.24.1",
"babel-register": "^6.9.0",
"chai": "^3.4.1",
"css-loader": "^0.23.1",
"dotenv": "^2.0.0",
"eslint": "^2.13.1",
"eslint-loader": "^1.3.0",
"extract-text-webpack-plugin": "^1.0.1",
"file-loader": "^0.10.1",
"html-webpack-plugin": "^2.21.0",
"mocha": "^2.5.3",
"sinon": "^1.17.4",
"webpack": "^1.15.0"
}
}