-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathpackage.json
60 lines (60 loc) · 1.9 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-google-cloud-storage-plugin",
"version": "0.9.0",
"description": "A Webpack plugin to upload assets in Google Cloud Storage.",
"main": "dist/webpack-google-cloud-storage-plugin.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "NODE_ENV=production webpack --config webpack.config.js",
"prepare": "npm run build",
"example": "cd examples && webpack --config webpack.config.js",
"watch": "webpack --config webpack.config.js --watch",
"lint": "eslint --quiet --fix --ext .js .",
"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": "git+ssh://[email protected]/syndbg/webpack-google-cloud-storage-plugin.git"
},
"keywords": [
"assets",
"cloud",
"google",
"node",
"plugin",
"production",
"storage",
"upload",
"webpack"
],
"author": "Anton Antonov <[email protected]> (https://github.com/syndbg/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/syndbg/webpack-google-cloud-storage-plugin/issues"
},
"homepage": "https://github.com/syndbg/webpack-google-cloud-storage-plugin#readme",
"devDependencies": {
"babel-core": "^6.18.0",
"babel-loader": "^6.2.7",
"babel-preset-es2015": "^6.18.0",
"eslint": "^3.9.0",
"eslint-config-airbnb": "^12.0.0",
"eslint-loader": "^1.6.0",
"eslint-plugin-import": "^2.0.1",
"eslint-plugin-jsx-a11y": "^2.2.3",
"eslint-plugin-react": "^6.4.1",
"json-loader": "^0.5.4",
"webpack": "^1.13.3",
"webpack-node-externals": "^1.5.4"
},
"dependencies": {
"@google-cloud/storage": "^1.5.0",
"babel-polyfill": "^6.16.0",
"bluebird": "^3.4.6",
"lodash.merge": "^4.6.0",
"prop-types": "^0.2.0",
"recursive-readdir": "^2.1.0"
}
}