forked from rhys-vdw/ts-auto-guard
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.47 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
{
"name": "ts-auto-guard",
"version": "4.2.0",
"description": "Generate type guard functions from TypeScript interfaces",
"homepage": "https://github.com/rhys-vdw/ts-auto-guard",
"repository": "github:rhys-vdw/ts-auto-guard",
"main": "lib/index.js",
"scripts": {
"test": "cross-env NODE_ENV=test && npm run lint && npm run format:check && tape -r ts-node/register tests/**/*.test.ts | tap-diff",
"build": "tsc",
"prepare": "npm run build",
"lint": "eslint .",
"format": "eslint --fix --ext ts && prettier --write *.json *.js *.yml src/**/*.ts tests/**/*.ts .github/**/*.yml",
"format:check": "prettier --list-different *.json *.js *.yml src/**/*.ts tests/**/*.ts .github/**/*.yml"
},
"bin": {
"ts-auto-guard": "./lib/cli.js"
},
"author": "Rhys van der Waerden",
"license": "MIT",
"dependencies": {
"command-line-args": "^5.1.1",
"command-line-usage": "^6.1.0",
"ts-morph": "^16.0.0",
"tsconfig": "^7.0.0"
},
"devDependencies": {
"@detools/tap-diff": "^0.2.2",
"@types/command-line-args": "^5.0.0",
"@types/command-line-usage": "^5.0.1",
"@types/node": "^18.11.9",
"@types/tape": "^4.13.0",
"@types/uglify-js": "^3.11.1",
"@typescript-eslint/eslint-plugin": "^5.42.1",
"@typescript-eslint/parser": "^5.42.1",
"cross-env": "^7.0.2",
"eslint": "~8.27.0",
"prettier": "^2.7.1",
"tape": "^5.0.1",
"ts-node": "^10.9.1",
"typescript": "^4.8.4",
"uglify-js": "^3.11.4"
}
}