-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.51 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
{
"name": "typescript-schema-tools",
"description": "Schema tooling",
"version": "2.17.0",
"license": "MIT",
"keywords": [
"library"
],
"repository": {
"type": "git",
"url": "https://github.com/temando/typescript-schema-tools"
},
"scripts": {
"test": "jest src",
"test:coverage": "jest src --coverage",
"build:api": "api-extractor run || true",
"lint": "tslint -p tsconfig.json",
"release": "cd build && yarn publish",
"build": "bash -v -e scripts/build",
"build:link": "yarn build && cd build && yarn link",
"changelog:verify": "changelog-verify CHANGELOG.md",
"changelog:version": "version-changelog CHANGELOG.md && git add CHANGELOG.md",
"preversion": "yarn lint && yarn build && yarn test && yarn changelog:verify && git add build/*.d.ts",
"version": "yarn changelog:version",
"postversion": "yarn build"
},
"devDependencies": {
"@microsoft/api-extractor": "^6.1.6",
"@types/bluebird": "^3.5.19",
"@types/clone": "^0.1.30",
"@types/fs-extra": "^5.0.0",
"@types/jest": "^21.1.9",
"@types/node": "^10",
"changelog-verify": "^1.1.0",
"jest": "^22.0.4",
"ts-jest": "^22.0.0",
"ts-node": "^8.2.0",
"tslint": "^5.16.0",
"tslint-config-temando": "^1.6.1",
"typescript": "~3.4",
"version-changelog": "^2.1.0"
},
"dependencies": {
"@jdw/jst": "^2.0.0-beta.15",
"bluebird": "^3.5.0",
"clone": "^2.1.1",
"fs-extra": "^5.0.0",
"lutils": "^2.4.0",
"typescript-json-schema": "~0.38.1"
}
}