-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 1 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
{
"name": "@s4tk/encoding",
"version": "0.1.4",
"main": "encoding.js",
"repository": {
"type": "git",
"url": "https://github.com/sims4toolkit/encoding.git"
},
"homepage": "https://sims4toolkit.com/#/docs/encoding",
"bugs": {
"url": "https://github.com/sims4toolkit/encoding/issues"
},
"description": "Utility classes for reading and writing binary 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"
}
}