-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
39 lines (39 loc) · 1.05 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
{
"name": "@s4tk/xml-dom",
"version": "0.2.6",
"main": "xml.js",
"repository": {
"type": "git",
"url": "https://github.com/sims4toolkit/xml-dom.git"
},
"homepage": "https://sims4toolkit.com/#/docs/xml-dom",
"bugs": {
"url": "https://github.com/sims4toolkit/xml-dom/issues"
},
"description": "An XML DOM tailored for use with Sims 4 tuning files.",
"scripts": {
"clean": "rm -rf ./dst/**",
"dev": "npm run clean ; tsc --watch",
"build": "npm run clean ; tsc ; node scripts/prepublish.cjs",
"publish": "npm run build && sh scripts/publish.sh",
"test": "mocha -r ts-node/register \"test/**/*.test.ts\""
},
"author": "frankkulak",
"funding": {
"type": "patreon",
"url": "https://www.patreon.com/bePatron?u=40823163"
},
"license": "MIT",
"devDependencies": {
"@types/chai": "^4.3.0",
"@types/mocha": "^9.0.0",
"@types/node": "^17.0.8",
"chai": "^4.3.4",
"mocha": "^9.1.3",
"ts-node": "^10.4.0",
"typescript": "^4.5.4"
},
"dependencies": {
"fast-xml-parser": "^4.2.5"
}
}