-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
executable file
·54 lines (54 loc) · 1.28 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
{
"name": "@type-schema/json-schema",
"version": "0.0.0",
"description": "Full TypeScript typed collection of JSON Schema drafts & Ts-Extras meta-schema drafts",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"compile": "tsc",
"build": "yarn run clean && yarn run compile",
"-------------": "-------------",
"test": "jest",
"test:coverage": "jest --collect-coverage",
"clean": "rimraf coverage dist && yarn run clean:buildinfo",
"clean:buildinfo": "rimraf ./**/tsconfig.tsbuildinfo",
"------------- ": "-------------",
"prepublishOnly": "yarn run build",
"preversion": "yarn test && yarn run build",
"version": "git add package.json"
},
"files": [
"README.md",
"CHANGELOG.md",
"dist"
],
"author": {
"name": "Ron S.",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "[email protected]:type-schema/json-schema.git"
},
"license": "MIT",
"keywords": [
"ts",
"typescript",
"json",
"schema",
"jsonschema",
"json-schema",
"ts-extras",
"type-schema",
"typeschema"
],
"engines": {
"node": ">=8.0.0"
},
"devDependencies": {
"jest": "^24.9.0",
"rimraf": "^3.0.2",
"ts-jest": "^24.1.0",
"typescript": "^3.9.3"
}
}