-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
35 lines (35 loc) · 1.07 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
{
"name": "tson-schema",
"version": "0.7.0",
"description": "A TypeScript API to create JSON-Schemas and TypeScript types",
"files": [
"dist"
],
"main": "dist/tson-schema.js",
"types": "dist/tson-schema.d.ts",
"scripts": {
"build": "tsc",
"lint": "tslint -p tsconfig.json",
"postlint": "yarn audit",
"dev": "nodemon -e ts --watch src --watch test --exec 'ts-node -P test/tsconfig.json $(yarn bin)/tape test/**/*.spec.ts | tap-spec'",
"pretest": "yarn lint && tslint -p test/tsconfig.json",
"test": "ts-node -P test/tsconfig.json $(yarn bin)/tape test/**/*.spec.ts | tap-spec",
"prepublishOnly": "yarn build"
},
"author": "Michael de Wit <[email protected]>",
"license": "ISC",
"dependencies": {},
"devDependencies": {
"@types/tape": "^4.2.33",
"ajv": "^6.11.0",
"nodemon": "^2.0.2",
"prettier": "^1.19.1",
"tap-spec": "^5.0.0",
"tape": "^4.13.0",
"ts-node": "^8.6.2",
"tslint": "^6.0.0",
"tslint-config-prettier": "^1.18.0",
"tslint-plugin-prettier": "^2.1.0",
"typescript": "^3.7.5"
}
}