This repository has been archived by the owner on Apr 8, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
75 lines (75 loc) · 2.96 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "typesmith",
"version": "0.9.8",
"private": false,
"author": "Franklin Davenport <[email protected]>",
"description": "Runtime Validation Made Easy",
"repository": {
"type": "git",
"url": "https://github.com/sparebytes/typesmith.git"
},
"license": "MIT",
"keywords": [
"Typescript",
"runtime",
"validation",
"transform",
"ajv",
"json-schema"
],
"scripts": {
"clean": "rimraf dist/* src/**/*.{js,js.map,d.ts}",
"build": "yarn run clean && yarn run build:once",
"build:once": "tsc --project tsconfig.json",
"build:release": "yarn build && cpx {README.md,LICENSE} dist && package-json-reducer -s \"scripts devDependencies\" -o dist/package.json package.json",
"build:watch": "tsc --project tsconfig.json --watch",
"debug": "node -r ts-node/register/transpile-only --inspect=127.0.0.1:43926 --inspect-brk ./debug/debug.ts",
"prettier": "prettier --write \"./src/**/*.ts\" \"./test/**/*.ts\" \"./debug/**/*.ts\"",
"ava": "ava",
"test:clean": "rimraf test/**/*.js",
"test:build": "ttsc --project tsconfig.test.json",
"test:build:watch": "yarn run test:build --watch",
"test:run": "ava --match \"!ISSUE:*\" --match \"!NOOP:*\" --verbose",
"test:run:watch": "yarn run test:run --watch",
"test:watch": "concurrently -c \"yellow,blue\" -n \"tb,tr\" \"yarn run test:build:watch\" \"yarn run test:run:watch\"",
"test": "yarn run test:clean && yarn run test:build && yarn run test:run",
"test:complete": "yarn build && yarn run test:clean && yarn run test:build && yarn run test:run",
"issues:run": "ava --match \"ISSUE:*\" --verbose",
"issues:complete": "yarn test:complete && yarn run issues:run",
"noop:build": "ttsc --project tsconfig.test.noop.json",
"noop:run": "ava --match \"NOOP:*\" --verbose",
"noop:complete": "yarn test:complete && yarn run noop:build && yarn run noop:run",
"dev": "concurrently -c \"bgYellow,green\" -n \"bld,tst\" \"yarn run build:watch\" \"yarn run test:watch\"",
"release": "yarn build:release && yarn test && git push --follow-tags origin master && cd dist && npm publish",
"prepublishOnly": "node do-not-run-publish-here___publish-the-dist-folder-instead",
"standard-version": "standard-version"
},
"dependencies": {
"@types/nested-error-stacks": "^2.1.0",
"ajv": "^6.10.2",
"ajv-errors": "^1.0.1",
"ajv-keywords": "^3.4.1",
"json-schema": "^0.2.5",
"nested-error-stacks": "^2.1.0",
"ts-json-schema-generator": "~0.52.14"
},
"peerDependencies": {
"typescript": ">=2.9.1"
},
"devDependencies": {
"@types/ajv-errors": "^1.0.2",
"@types/json-schema": "^7.0.3",
"@types/node": "*",
"ava": "^2.4.0",
"concurrently": "^4.1.2",
"cpx": "^1.5.0",
"package-json-reducer": "1.0.18",
"prettier": "~1.18.2",
"rimraf": "^3.0.0",
"standard-version": "^7.0.0",
"ts-node": "^8.4.1",
"tslint": "^5.20.0",
"ttypescript": "^1.5.7",
"typescript": "~3.5.3"
}
}