-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
52 lines (52 loc) · 1.34 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
{
"name": "asset-map-webpack-plugin",
"version": "3.0.0",
"description": "Webpack plugin that creates a map of assets to public url slug for server agnostic usage.",
"main": "lib/index.js",
"scripts": {
"prepublish": "babel src --out-dir lib",
"test": "mocha --compilers js:babel-core/register",
"lint": "eslint src/index.js test/*.js"
},
"author": "Matt Smith <[email protected]>",
"license": "MIT",
"dependencies": {
"url": "^0.10.3",
"webpack": "^2 || ^3"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-preset-env": "^1.6.1",
"chai": "^2.0.0",
"css-loader": "^0.28.9",
"eslint": "^4.2.0",
"extract-text-webpack-plugin": "^3.0.2",
"file-loader": "^1.1.6",
"less": "^2.4.0",
"less-loader": "^4.0.5",
"lodash": "^3.3.1",
"mocha": "^3.4.2",
"rimraf": "^2.2.8",
"style-loader": "^0.19.1",
"touch": "^3.1.0"
},
"repository": {
"type": "git",
"url": "https://github.com/mtscout6-team/asset-map-webpack-plugin.git"
},
"keywords": [
"webpack",
"webpack-plugin"
],
"files": [
"lib/index.js",
"src/index.js",
"LICENSE.txt",
"package.json",
"README.md"
],
"bugs": {
"url": "https://github.com/mtscout6-team/asset-map-webpack-plugin/issues"
},
"homepage": "https://github.com/mtscout6-team/asset-map-webpack-plugin"
}