UNPKG

1.58 kBJSONView Raw
1{
2 "name": "webpack-s3-plugin",
3 "version": "1.0.0-rc.0",
4 "description": "Uploads compiled assets to s3 after build",
5 "main": "dist/s3_plugin.js",
6 "scripts": {
7 "build": "webpack",
8 "prepublish": "npm run lint && npm run test && npm run build",
9 "test": "NODE_ENV='test' mocha -t 10000 --compilers js:babel-register",
10 "lint": "eslint ./src ./test",
11 "watch": "webpack --watch",
12 "prep:major": "npm run build && npm version major",
13 "prep:minor": "npm run build && npm version minor",
14 "prep:patch": "npm run build && npm version patch"
15 },
16 "repository": {
17 "type": "git",
18 "url": "git@github.com:MikaAK/s3-plugin-webpack.git"
19 },
20 "keywords": [
21 "s3",
22 "webpack",
23 "node",
24 "upload",
25 "production"
26 ],
27 "author": "Mika Kalathil",
28 "license": "MIT",
29 "bugs": {
30 "url": "https://github.com/MikaAK/s3-plugin-webpack/issues"
31 },
32 "homepage": "https://github.com/MikaAK/s3-plugin-webpack",
33 "dependencies": {
34 "aws-sdk": "~2.4.1",
35 "cdnizer": "^1.1.5",
36 "lodash": "^4.13.0",
37 "progress": "^1.1.8",
38 "recursive-readdir": "^2.0.0",
39 "s3": "^4.4.0"
40 },
41 "devDependencies": {
42 "babel-loader": "^6.2.4",
43 "babel-preset-es2015": "^6.9.0",
44 "babel-register": "^6.9.0",
45 "chai": "^3.4.1",
46 "css-loader": "^0.23.1",
47 "dotenv": "^2.0.0",
48 "eslint": "^2.13.0",
49 "eslint-loader": "^1.3.0",
50 "extract-text-webpack-plugin": "^1.0.1",
51 "file-loader": "^0.10.1",
52 "html-webpack-plugin": "^2.21.0",
53 "mocha": "^2.5.3",
54 "sinon": "^1.17.4",
55 "webpack": "^1.13.1"
56 }
57}