-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
37 lines (37 loc) · 954 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
{
"name": "htl-loader",
"version": "4.1.0",
"description": "Webpack loader for HTL/Sightly templates",
"main": "index.js",
"scripts": {
"test": "mocha test/*.test.js",
"example": "webpack --config example/webpack.config.js",
"example-serve": "webpack serve --config example/webpack.config.js",
"format": "prettier --write \"**/*.js\"",
"release": "np",
"prepare": "husky install"
},
"keywords": [
"htl",
"sightly"
],
"author": "Thomas Jaggi @backflip",
"repository": "github:backflip/htl-loader",
"license": "MIT",
"devDependencies": {
"@adobe/htlengine": "^6.4.0",
"fs-extra": "^10.0.0",
"husky": "^7.0.0",
"mocha": "^9.1.3",
"np": "^7.6.0",
"prettier": "^2.5.1",
"pretty-quick": "^3.1.3",
"webpack": "^5.65.0",
"webpack-cli": "^4.9.1",
"webpack-dev-server": "^4.7.4"
},
"peerDependencies": {
"@adobe/htlengine": "^6.4.0",
"webpack": "^5"
}
}