-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 787 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 787 Bytes
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
{
"name": "js.html-builder",
"version": "1.1.4",
"description": "Javascript DSL for HTML",
"main": "dist/HtmlBuilder.js",
"scripts": {
"pretest": "npm run build:src",
"test": "TS_NODE_COMPILER_OPTIONS='{\"noImplicitAny\":false}' mocha ",
"build:src": "tsc",
"prepare": "npm run clean && npm run build:src",
"clean": "rm -rf dist"
},
"keywords": [],
"author": "",
"license": "MIT",
"devDependencies": {
"@types/lodash": "^4.14.138",
"@types/mocha": "^5.2.7",
"@types/node": "^12.7.2",
"chai": "^4.2.0",
"install": "^0.13.0",
"mocha": "^6.2.0",
"ts-node": "^8.3.0",
"typescript": "^3.5.3",
"xmldom": "^0.1.27",
"xpath": "0.0.27"
},
"dependencies": {
"js-dsl": "^1.0.5",
"lodash": "^4.17.15"
}
}