-
Notifications
You must be signed in to change notification settings - Fork 169
/
package.json
62 lines (62 loc) · 1.35 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
53
54
55
56
57
58
59
60
61
62
{
"name": "handlebars-loader",
"contributors": [
"Alan @altano",
"Tobias Koppers @sokra",
"Jason Anderson @diurnalist"
],
"maintainers": [
"Paul Carduner @pcardune"
],
"description": "handlebars loader module for webpack",
"dependencies": {
"async": "^3.2.2",
"fastparse": "^1.0.0",
"loader-utils": "1.4.x",
"object-assign": "^4.1.0"
},
"peerDependencies": {
"handlebars": ">= 1.3.0 < 5"
},
"licenses": [
{
"type": "MIT",
"url": "http://www.opensource.org/licenses/mit-license"
}
],
"repository": {
"type": "git",
"url": "git://github.com/pcardune/handlebars-loader.git"
},
"version": "1.7.3",
"devDependencies": {
"eslint": "^8.15.0",
"eslint-config-prettier": "^8.5.0",
"html-loader": "^0.3.0",
"istanbul": "^0.4.2",
"mocha": "^10.0.0",
"npm-release": "^1.0.0",
"prettier": "2.6.2",
"sinon": "^14.0.0"
},
"bugs": {
"url": "https://github.com/pcardune/handlebars-loader/issues"
},
"homepage": "https://github.com/pcardune/handlebars-loader",
"main": "index.js",
"files": [
"index.js",
"lib"
],
"directories": {
"example": "example",
"test": "test"
},
"scripts": {
"test": "mocha",
"coverage": "istanbul cover _mocha",
"lint": "eslint lib/ test/ index.js"
},
"author": "",
"license": "MIT"
}