-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.22 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.22 KB
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
{
"name": "webpack-salesforce-plugin",
"version": "1.0.1",
"description": "A small configurable plugin that can zip and upload bundle files to Salesforce as static resources.",
"main": "dist/webpackSalesforcePlugin.js",
"scripts": {
"dev": "webpack -d",
"build": "webpack -p",
"test": "mocha-webpack --webpack-config webpack.config-test.js src/**/*.spec.js --colors"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nadrees/webpack-salesforce-plugin.git"
},
"keywords": [
"webpack",
"salesforce"
],
"author": "Nathen Drees",
"license": "MIT",
"bugs": {
"url": "https://github.com/nadrees/webpack-salesforce-plugin/issues"
},
"homepage": "https://github.com/nadrees/webpack-salesforce-plugin#readme",
"dependencies": {
"jsforce": "^1.7.0",
"webpack": "^1.13.1"
},
"devDependencies": {
"babel-core": "^6.13.2",
"babel-loader": "^6.2.4",
"babel-preset-es2015": "^6.13.2",
"chai": "^3.5.0",
"glob": "^7.0.5",
"json-loader": "^0.5.4",
"lodash": "^4.14.2",
"mocha": "^3.0.2",
"mocha-webpack": "^0.6.0",
"node-zip": "^1.1.1",
"object-assign": "^4.1.0",
"sinon": "^1.17.5",
"webpack-node-externals": "^1.3.3"
}
}