-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
47 lines (47 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
{
"name": "class-schema",
"version": "0.25.3",
"description": "Javascript / Typescript class to JsonSchema",
"main": "dist/index.js",
"private": false,
"scripts": {
"test": "ts-mocha 'tests/**.test.ts'",
"cover": "nyc npm run test",
"lint": "eslint",
"build:watch": "tsc --watch",
"build": "tsc",
"docs": "docsify generate docs",
"docs:watch": "docsify serve docs",
"prepublishOnly": "npm run lint && npm test && npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/GiovanniCardamone/class-schema.git"
},
"keywords": [
"json-schema"
],
"author": "Giovanni Cardamone <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/GiovanniCardamone/class-schema/issues"
},
"homepage": "https://github.com/GiovanniCardamone/class-schema#readme",
"devDependencies": {
"@types/chai": "^4.2.21",
"@types/mocha": "^9.0.0",
"@typescript-eslint/eslint-plugin": "^4.28.5",
"@typescript-eslint/parser": "^4.28.5",
"chai": "^4.3.4",
"docsify": "^4.12.1",
"eslint": "^7.32.0",
"mocha": "^8.4.0",
"nyc": "^15.1.0",
"reflect-metadata": "^0.1.13",
"ts-mocha": "^8.0.0",
"typescript": "^4.3.5"
},
"dependencies": {
"json-schema": "^0.4.0"
}
}