-
Notifications
You must be signed in to change notification settings - Fork 31
/
package.json
44 lines (44 loc) · 953 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": "mustache-loader",
"version": "1.4.3",
"description": "Mustache loader for webpack",
"keywords": [
"webpack",
"loader",
"mustache",
"hogan"
],
"homepage": "https://github.com/deepsweet/mustache-loader",
"author": {
"name": "Kir Belevich",
"email": "[email protected]",
"url": "https://github.com/deepsweet"
},
"repository": {
"type": "git",
"url": "git://github.com/deepsweet/mustache-loader.git"
},
"main": "index.js",
"peerDependencies": {
"hogan.js": "^3.0.2",
"webpack": "* || ^2.1.0-beta || ^4.0.0-beta"
},
"dependencies": {
"hogan.js": "^3.0.2",
"html-minifier": "^3.1.0",
"loader-utils": "^1.1.0"
},
"devDependencies": {
"eslint": "^5.0.0",
"mocha": "^5.2.0",
"chai": "^4.0.0"
},
"scripts": {
"pretest": "eslint index.js",
"test": "mocha --reporter spec"
},
"engines": {
"node": ">=4.0.0"
},
"license": "WTFPL"
}