forked from pcardune/handlebars-loader
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.21 KB
/
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
47
48
49
50
51
52
{
"name": "@viadeo-fcms/handlebars-loader",
"version": "2.2.1",
"description": "handlebars loader module for webpack",
"homepage": "https://github.com/viadeo/handlebars-loader",
"licenses": [
{
"type": "MIT",
"url": "http://www.opensource.org/licenses/mit-license"
}
],
"repository": {
"type": "git",
"url": "git://github.com/viadeo/handlebars-loader.git"
},
"main": "index.js",
"dependencies": {
"async": "0.2.10",
"fastparse": "1.0.0",
"loader-utils": "0.2.x",
"handlebars": ">= 1.3.0 < 5"
},
"peerDependencies": {
"handlebars": ">= 1.3.0 < 5"
},
"devDependencies": {
"html-loader": "0.3.0",
"nyc": "11.4.1",
"mocha": "1.21.4",
"sinon": "1.10.3"
},
"bugs": {
"url": "https://github.com/altano/handlebars-loader/issues"
},
"files": [
"index.js",
"lib"
],
"directories": {
"example": "example",
"test": "test"
},
"scripts": {
"test": "mocha --timeout 1100 --reporter spec 'test/test.js'",
"coverage": "nyc --report-dir coverage --clean -r lcov -r text -r json-summary -r json -r html mocha --timeout=1100 --reporter=spec"
},
"author": "",
"license": "MIT",
"engines": {
"node": "8.9.4"
}
}