-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
43 lines (37 loc) · 980 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
{
"name": "qd-base64-loader",
"version": "0.0.1",
"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": {
"loader-utils": "^0.2.16",
"file-loader": "^0.10.0",
"mime-types": "^2.1.12"
},
"devDependencies": {
"css-loader": "^0.23.0",
"extract-text-webpack-plugin": "^2.0.0-rc.3",
"clean-webpack-plugin": "^0.1.15",
"style-loader" : "^0.13.0",
"mocha": "^3.1.2",
"webpack": "^2.x"
},
"peerDependencies": {
"webpack": "^2.x"
}
}