-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
59 lines (59 loc) · 1.71 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
49
50
51
52
53
54
55
56
57
58
59
{
"name": "ts-audit",
"version": "0.4.10",
"description": "Plugin for typescript for doing runtime validation of interfaces",
"main": "build/main.js",
"types": "./index.d.ts",
"files": [
"build",
"index.d.ts"
],
"scripts": {
"check": "npm run build -- --noEmit",
"prebuild": "rimraf build",
"build": "tsc",
"test": "cd tests && ts-node test.ts",
"postversion": "npm run build",
"release": "np",
"lint:base": "eslint --ext ts,tsx",
"lint:fix": "npm run lint:base -- --fix src tests",
"lint": "npm run lint:base -- src tests",
"watch": "npm run build -- --watch"
},
"author": "Jacob V. Gardner <jacob.v.gardner@gmail.com>",
"license": "MIT",
"devDependencies": {
"@types/colors": "^1.2.1",
"@types/debug": "^4.1.4",
"@types/json-schema": "^7.0.3",
"@types/node": "^12.0.10",
"@typescript-eslint/eslint-plugin": "^1.11.0",
"@typescript-eslint/parser": "^1.11.0",
"eslint": "^6.0.1",
"eslint-config-prettier": "^6.0.0",
"husky": "^2.7.0",
"np": "^5.0.3",
"prettier": "^1.18.2",
"pretty-quick": "^1.11.1",
"rimraf": "^2.6.3",
"ts-node": "^8.3.0",
"ttypescript": "^1.5.7",
"typescript": "^3.5.3"
},
"peerDependencies": {
"typescript": ">3.5"
},
"dependencies": {
"ajv": "^6.10.0",
"colors": "^1.3.3",
"debug": "^4.1.1",
"json-schema": "^0.2.3",
"pjson": "^1.0.9",
"ts-json-schema-generator": "^0.52.9"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
}
}