forked from deepsweet/mustache-loader
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1000 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
45
46
{
"name": "mustache-loader",
"version": "1.2.0",
"description": "Mustache loader for webpack",
"keywords": [
"webpack",
"loader",
"mustache",
"hogan"
],
"homepage": "https://github.com/deepsweet/mustache-loader",
"author": {
"name": "Kir Belevich",
"email": "kir@soulshine.in",
"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"
},
"dependencies": {
"hogan.js": "^3.0.2",
"html-minifier": "^3.1.0",
"loader-utils": "^1.1.0",
"xtend": "^4.0.0"
},
"devDependencies": {
"eslint": "^4.0.0",
"jscs": "^3.0.7",
"mocha": "^3.1.0",
"chai": "^4.0.0"
},
"scripts": {
"pretest": "eslint index.js && jscs index.js",
"test": "mocha --reporter spec"
},
"engines": {
"node": ">=4.0.0"
},
"license": "WTFPL"
}