-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
35 lines (35 loc) · 955 Bytes
/
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
{
"name": "@justeat/ts-jsonschema-builder",
"version": "1.0.0",
"description": "Fluent TypeScript JSON Schema Builder with IntelliSense support.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "tsc",
"lint": "tslint -p tsconfig.json",
"test": "mocha -r ts-node/register tests/**/*.spec.ts",
"watch": "mocha -r ts-node/register tests/**/*.spec.ts --watch-extensions ts --watch"
},
"contributors": [
"GitHub contributors <https://github.com/justeat/ts-jsonschema-builder/contributors>"
],
"license": "Apache-2.0",
"dependencies": {
"esprima": "^4.0.1"
},
"devDependencies": {
"@types/node": "^12.12.26",
"typescript": "^3.7.5",
"@types/chai": "^4.2.8",
"@types/esprima": "^4.0.2",
"@types/mocha": "^5.2.7",
"ajv": "^6.11.0",
"chai": "^4.2.0",
"mocha": "^7.0.1",
"ts-mocha": "^6.0.0",
"tslint": "^6.0.0"
}
}