-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
39 lines (39 loc) · 978 Bytes
/
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
{
"name": "webpack-path-rewriter",
"version": "1.1.4",
"description": "Webpack plugin for replacing resources' paths with public ones",
"author": "Sam Kozin <[email protected]>",
"scripts": {
"prepublish": "babel ./es6 --presets es2015 --out-dir .",
"watch": "babel --watch ./es6 --presets es2015 --out-dir .",
"test": "echo 'Sorry, no tests yet' && exit 1"
},
"repository": {
"type": "git",
"url": "https://github.com/skozin/webpack-path-rewriter.git"
},
"keywords": [
"webpack",
"plugin",
"assets",
"hashing",
"html"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/skozin/webpack-path-rewriter/issues"
},
"homepage": "https://github.com/skozin/webpack-path-rewriter",
"dependencies": {
"loader-utils": "^0.2.11"
},
"devDependencies": {
"babel-cli": "^6.1.18",
"babel-preset-es2015": "^6.1.18"
},
"files": [
"index.js",
"es6/index.js"
],
"main": "index.js"
}