-
-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathpackage.json
62 lines (62 loc) · 1.44 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": "posthtml-expressions",
"version": "1.11.4",
"description": "Expressions Plugin for PostHTML",
"engines": {
"node": ">=10"
},
"main": "lib",
"types": "lib/index.d.ts",
"files": [
"lib"
],
"scripts": {
"lint": "standard",
"test": "npm run lint && nyc ava --timeout=1m",
"version": "standard-changelog -i CHANGELOG.md -w && git add changelog.md",
"docs": "jsdoc2md lib/*.js > INDEX.md"
},
"dependencies": {
"fclone": "^1.0.11",
"posthtml-match-helper": "^1.0.1",
"posthtml-parser": "^0.10.0",
"posthtml": "^0.16.5",
"posthtml-render": "^3.0.0"
},
"devDependencies": {
"ava": "^3.15.0",
"jsdoc-to-markdown": "^7.0.1",
"nyc": "^15.1.0",
"posthtml-beautify": "^0.7.0",
"standard": "^16.0.3",
"standard-changelog": "^2.0.27"
},
"keywords": [
"expressions",
"posthtml",
"posthtmlplugin"
],
"author": {
"name": "Jeff Escalante",
"email": "[email protected]"
},
"contributors": [
{
"name": "Michael Ciniawsky",
"email": "[email protected]"
},
{
"name": "Denis Malinochkin",
"email": "[email protected]"
}
],
"repository": {
"type": "git",
"url": "https://github.com/posthtml/posthtml-expressions"
},
"bugs": {
"url": "https://github.com/posthtml/posthtml-expressions/issues"
},
"homepage": "https://github.com/posthtml/posthtml-expressions",
"license": "MIT"
}