-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
48 lines (48 loc) · 1.13 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
45
46
47
48
{
"name": "@city41/sromcrom",
"version": "0.19.1",
"main": "lib/index.js",
"types": "lib/types.d.ts",
"files": [
"lib/**/*.js",
"lib/**/*.d.ts"
],
"bin": {
"sromcrom": "./lib/index.js"
},
"license": "GPL-3.0",
"dependencies": {
"canvas": "^2.11.2",
"commander": "^11.0.0",
"fp-ts": "^2.16.1",
"handlebars": "^4.7.8",
"io-ts": "^2.2.20",
"io-ts-human-reporter": "^0.1.2",
"lodash": "^4.17.21",
"mkdirp": "^3.0.1"
},
"devDependencies": {
"@types/jest": "^29.5.5",
"@types/lodash": "^4.14.199",
"@types/mkdirp": "^2.0.0",
"@types/node": "^20.8.2",
"@typescript-eslint/eslint-plugin": "^6.7.4",
"@typescript-eslint/parser": "^6.7.4",
"eslint": "^8.50.0",
"jest": "^29.7.0",
"prettier": "^3.0.3",
"ts-jest": "^29.1.1",
"ts-mockery": "^1.2.0",
"typescript": "^5.2.2"
},
"scripts": {
"test": "yarn jest",
"lint": "yarn eslint . --ext .ts",
"type-check": "tsc --noemit",
"start": "ts-node ./src/index.ts",
"testData": "mkdir -p testData/out && ts-node ./src/index.ts -i ./testData/testResources.json",
"prebuild": "yarn type-check && yarn test",
"build": "tsc",
"prepublish": "yarn build"
}
}