-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.16 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": "typedgate",
"version": "0.1.5",
"description": "TypeScript-defined JSON validator",
"main": "dist/index.js",
"bin": "bin/cli.js",
"types": "dist/index.d.ts",
"prepublish": "npm run build",
"scripts": {
"test": "mocha --require ts-node/register --colors test/unit/**/*.ts test/unit/*.ts",
"build": "tsc",
"coverage": "nyc npm run test",
"lint": "tslint --format stylish 'src/**/*.ts{,x}'",
"tslint-check": "tslint-config-prettier-check ./tslint.json"
},
"repository": {
"type": "git",
"url": "https://github.com/twogate/typedgate.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/twogate/typedgate/issues"
},
"dependencies": {
"@types/command-line-args": "^5.0.0",
"chalk": "^2.4.2",
"command-line-args": "^5.1.1",
"ts-morph": "^4.2.0"
},
"devDependencies": {
"@types/chai": "^4.2.3",
"@types/mocha": "^5.2.7",
"@types/node": "^12.7.11",
"chai": "^4.2.0",
"mocha": "^6.2.1",
"nyc": "^14.1.1",
"prettier": "1.18.2",
"ts-node": "^8.4.1",
"tslint": "^5.20.0",
"tslint-config-prettier": "^1.18.0",
"typescript": "^3.6.3"
}
}