forked from bt404/base64-inline-loader
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 985 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
40
41
42
43
44
{
"name": "base64-inline-loader",
"version": "1.1.0",
"description": "Base64 loader for Webpack",
"keywords": [
"webpack",
"base64",
"css",
"fonts",
"images",
"loader"
],
"author": "Alexander Abashkin <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "[email protected]:monolithed/base64-inline-loader.git"
},
"engines": {
"node": ">=6.2",
"npm": ">=3.8"
},
"scripts": {
"test": "npm run webpack && npm run mocha",
"mocha": "mocha --full-trace --ui tdd index.js tests/index.js",
"webpack": "webpack --progress --display-error-details --config tests/config.js"
},
"dependencies": {
"file-loader": "^1.1.6",
"loader-utils": "^1.1.0",
"mime-types": "^2.1.12"
},
"devDependencies": {
"css-loader": "^0.28.7",
"extract-text-webpack-plugin": "^3.0.2",
"clean-webpack-plugin": "^0.1.15",
"style-loader": "^0.19.1",
"mocha": "^4.0.1",
"webpack": "^3.x"
},
"peerDependencies": {
"webpack": "^3.x"
}
}