-
-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
60 lines (60 loc) · 1.51 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
{
"name": "posthtml-extend",
"version": "0.6.5",
"description": "Templates extending (Jade-like)",
"license": "MIT",
"repository": "posthtml/posthtml-extend",
"author": "Kirill Maltsev <[email protected]>",
"main": "lib/index.js",
"engines": {
"node": ">=14"
},
"scripts": {
"version": "conventional-changelog -i changelog.md -s -r 0 && git add changelog.md",
"prepare": "npm run build",
"build": "rimraf lib && babel src -d lib",
"test": "c8 mocha --require @babel/register --check-leaks",
"pretest": "clinton"
},
"files": [
"lib"
],
"keywords": [
"posthtml",
"posthtml-plugin",
"html",
"postproccessor",
"jade",
"extend",
"template"
],
"dependencies": {
"deepmerge": "^4.2.2",
"posthtml": "^0.16.5",
"posthtml-expressions": "^1.10.0",
"posthtml-parser": "^0.11.0"
},
"devDependencies": {
"@babel/cli": "^7.19.3",
"@babel/core": "^7.20.5",
"@babel/preset-env": "^7.20.2",
"@babel/register": "^7.18.9",
"@commitlint/cli": "^17.3.0",
"@commitlint/config-angular": "^17.3.0",
"babel-eslint": "^10.1.0",
"babel-plugin-add-module-exports": "^1.0.4",
"babel-preset-minify": "^0.5.1",
"bluebird": "^3.7.2",
"c8": "^7.12.0",
"chai": "^4.3.7",
"clinton": "^0.14.0",
"conventional-changelog-cli": "^2.1.1",
"expect": "^29.3.1",
"husky": "^8.0.2",
"lint-staged": "^13.1.0",
"mocha": "^10.2.0",
"proxyquire": "^2.1.3",
"rimraf": "^3.0.2",
"xo": "^0.53.1"
}
}