forked from MikaAK/s3-plugin-webpack
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.71 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
{
"name": "webpack-s3-plugin",
"version": "1.0.3",
"description": "Uploads compiled assets to s3 after build",
"main": "dist/s3_plugin.js",
"scripts": {
"build": "webpack --mode production",
"prepublishOnly": "npm run lint && npm run test && npm run build",
"test": "NODE_ENV='test' mocha -t 10000 --require babel-register",
"lint": "eslint ./src ./test",
"watch": "webpack --watch --mode development",
"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.282.1",
"cdnizer": "^3.0.2",
"lodash": "^4.17.10",
"mime": "^2.3.1",
"progress": "^2.0.0",
"recursive-readdir": "^2.2.2"
},
"devDependencies": {
"babel-core": "^6.26.0",
"babel-loader": "^7.1.4",
"babel-preset-env": "^1.6.1",
"chai": "^4.1.2",
"css-loader": "^0.28.11",
"dotenv": "^5.0.1",
"eslint": "^4.19.1",
"eslint-loader": "^2.0.0",
"extract-text-webpack-plugin": "^4.0.0-beta.0",
"file-loader": "^1.1.11",
"html-webpack-plugin": "^3.2.0",
"mocha": "^5.0.5",
"sinon": "^4.5.0",
"style-loader": "^0.20.3",
"webpack": "^4.16.5",
"webpack-cli": "^3.1.0"
},
"peerDependencies": {
"webpack": ">=4.0.0"
}
}