forked from rhys-vdw/ts-auto-guard
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.53 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
{
"name": "ts-auto-guard",
"version": "1.0.0-alpha.14",
"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/**/*.ts | tap-diff",
"build": "tsc",
"prepare": "npm run build",
"lint": "eslint .",
"format": "eslint --fix --ext ts && prettier --write *.json *.js *.yml src/**/*.ts .github/**/*.yml",
"format:check": "prettier --list-different *.json *.js *.yml src/**/*.ts .github/**/*.yml"
},
"bin": {
"ts-auto-guard": "./lib/cli.js"
},
"author": "Rhys van der Waerden",
"license": "MIT",
"dependencies": {
"@ts-morph/common": "^0.6.0",
"@types/command-line-args": "^5.0.0",
"@types/command-line-usage": "^5.0.1",
"@types/lodash": "^4.14.160",
"command-line-args": "^5.1.1",
"command-line-usage": "^6.1.0",
"lodash": "^4.17.20",
"ts-morph": "^8.1.2",
"tsconfig": "^7.0.0"
},
"devDependencies": {
"@detools/tap-diff": "^0.2.2",
"@types/node": "^14.6.0",
"@types/tape": "^4.13.0",
"@types/uglify-js": "^3.11.1",
"@typescript-eslint/eslint-plugin": "^4.6.0",
"@typescript-eslint/parser": "^4.6.0",
"cross-env": "^7.0.2",
"eslint": "^7.12.1",
"prettier": "^2.1.2",
"tape": "^5.0.1",
"ts-node": "^9.0.0",
"typescript": "^4.0.5",
"uglify-js": "^3.11.4"
}
}