-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.24 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
{
"private": true,
"author": "TypeScriptLibs and Contributers",
"description": "TypeScript Library for XML",
"license": "MIT",
"name": "tsl-core-xml",
"type": "module",
"version": "0.4.0",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"bugs": "https://github.com/typescriptlibs/tsl-core-xml/issues",
"homepage": "https://typescriptlibs.org/tsl-core-xml/",
"repository": "https://github.com/typescriptlibs/tsl-core-xml.git",
"devDependencies": {
"@types/node": "~18.6.0",
"@typescriptlibs/tst": "^0.1.0",
"husky": "~9.0.7",
"tsl-core-xml": "./",
"typescript": "~5.3.3"
},
"engines": {
"node": ">=18.6.0"
},
"files": [
"amd/",
"lib/",
"AUTHORS.md",
"CHANGELOG.md",
"LICENSE.md",
"README.md"
],
"keywords": [
"TypeScript",
"XML"
],
"scripts": {
"build": "npm run clean && npm run build:amd && npm run build:lib",
"build:amd": "tsc -p src/tsconfig.amd.json",
"build:lib": "tsc -p src/tsconfig.json",
"clean": "rm -rf lib/ tst-run/",
"test": "npm run build && npx tst --verbose tst/",
"watch": "npm run build -- --watch"
}
}