forked from kossnocorp/static-files-webpack-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.16 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
{
"name": "static-files-webpack-plugin",
"version": "0.7.0",
"description": "webpack plugin that emits a JSON file with public paths",
"main": "index.js",
"engines": {
"node": ">= 0.12"
},
"scripts": {
"lint": "standard",
"lint-fix": "standard --fix",
"test": "npm run lint && env NODE_ENV=test mocha --require ./test/power_assert_loader.js ./test --watch",
"test-ci": "npm run lint && env NODE_ENV=test mocha --require ./test/power_assert_loader.js ./test"
},
"repository": {
"type": "git",
"url": "[email protected]:kossnocorp/static-files-webpack-plugin.git"
},
"keywords": [
"webpack"
],
"author": "Sasha Koss <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/kossnocorp/static-files-webpack-plugin/issues"
},
"homepage": "https://github.com/kossnocorp/static-files-webpack-plugin",
"devDependencies": {
"espower-loader": "^1.0.0",
"file-loader": "^0.8.4",
"mocha": "^5.2.0",
"power-assert": "^1.1.0",
"rimraf": "^2.4.3",
"standard": "^12.0.1",
"static-file-loader": "^0.4.0",
"webpack": "^1.12.2"
},
"standard": {
"env": [
"mocha"
]
}
}