-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
44 lines (44 loc) · 1.06 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
{
"name": "compose-html",
"version": "1.1.0",
"main": "dist/cjs/main.js",
"types": "dist/types/main.d.ts",
"bin": {
"compose-html": "dist/bin/main.js"
},
"dependencies": {
"acorn-loose": "^8.3.0",
"cli-highlight": "^2.1.11",
"commander": "^9.4.1",
"html-tags": "^3.2.0",
"js-beautify": "^1.14.7",
"jsdom": "^20.0.3",
"loglevel": "^1.8.1",
"vm2": "^3.9.12",
"xml-zero-lexer": "^4.0.1"
},
"devDependencies": {
"@types/estree": "^1.0.0",
"@types/glob": "^8.0.0",
"@types/jest": "^29.2.3",
"@types/js-beautify": "^1.13.3",
"@types/jsdom": "^20.0.1",
"@types/node": "^18.11.10",
"esbuild": "^0.16.9",
"glob": "^8.0.3",
"jest": "^29.3.1",
"ts-jest": "^29.0.3",
"ts-node": "^10.9.1",
"tsconfig-paths": "^4.1.1",
"tslib": "^2.4.1",
"typescript": "^4.9.3"
},
"scripts": {
"prepare": "npm run build",
"prepack": "npm run build",
"build": "npm run build-js && npm run build-bin",
"build-js": "tsc",
"build-bin": "node build-bin.js",
"test": "jest"
}
}