forked from deepsweet/mustache-loader
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 888 Bytes
/
package.json
File metadata and controls
42 lines (42 loc) · 888 Bytes
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
{
"name": "mustache-loader",
"version": "0.3.1",
"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.0.1-beta"
},
"dependencies": {
"hogan.js": "^3.0.2",
"html-minifier": "^0.6.8",
"loader-utils": "^0.2.4"
},
"devDependencies": {
"eslint": "^0.8.1",
"jscs": "^1.6.2"
},
"scripts": {
"test": "eslint index.js && jscs index.js"
},
"engines": {
"node": ">=0.10.0"
},
"license": "WTFPL"
}