-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathpackage.json
65 lines (65 loc) · 1.85 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
63
64
65
{
"name": "@adobe/htlengine",
"version": "6.4.30",
"description": "Javascript Based HTL (Sightly) parser",
"main": "src/index.js",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/adobe/htlengine.git"
},
"engines": {
"node": ">=14"
},
"scripts": {
"build": "npm run build:compile && npm run build:railroad",
"build:compile": "nearleyc ./src/parser/grammar/sightly.ne --out ./src/parser/generated/grammar.js",
"build:railroad": "nearley-railroad ./src/parser/grammar/sightly.ne --out ./src/parser/generated/grammar.html",
"semantic-release": "semantic-release",
"semantic-release-dry": "semantic-release --dry-run --branches $CI_BRANCH",
"start": "node src/run.js",
"test": "c8 mocha",
"lint": "eslint .",
"prepare": "husky"
},
"dependencies": {
"dompurify": "3.2.4",
"fs-extra": "11.3.0",
"he": "1.2.0",
"jsdom": "26.0.0",
"moment": "2.30.1",
"moo": "0.5.2",
"nearley": "2.20.1",
"node-esapi": "0.0.1",
"numeral": "2.0.6",
"rehype-parse": "7.0.1",
"source-map": "0.7.4",
"unified": "9.2.2",
"unist-util-inspect": "6.0.1",
"xregexp": "5.1.1"
},
"devDependencies": {
"@semantic-release/changelog": "6.0.3",
"@semantic-release/git": "10.0.1",
"c8": "10.1.3",
"eslint": "8.57.1",
"eslint-config-airbnb-base": "15.0.0",
"eslint-plugin-header": "3.1.1",
"eslint-plugin-import": "2.31.0",
"husky": "9.1.7",
"lint-staged": "15.4.3",
"mocha": "11.1.0",
"mocha-junit-reporter": "2.2.1",
"rehype-stringify": "8.0.0",
"remark-parse": "9.0.0",
"remark-rehype": "8.1.0",
"semantic-release": "24.2.3"
},
"lint-staged": {
"*.js": "eslint"
},
"bugs": {
"url": "https://github.com/adobe/htlengine/issues"
},
"homepage": "https://github.com/adobe/htlengine#readme"
}