-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
50 lines (50 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
{
"name": "type-schema",
"version": "1.0.1",
"description": "Define JSON Schemas using TypeScript classes",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"typings": "lib/index.d.ts",
"scripts": {
"test": "npm run lint && npm run test-unit",
"clean": "rm -rf lib",
"coverage": "nyc report --reporter=text-lcov | coveralls",
"test-unit": "nyc mocha -r ts-node/register src/test/**/*.test.ts",
"lint": "tslint --type-check --project tsconfig.json",
"build": "npm run test && npm run clean && tsc"
},
"repository": {
"type": "git",
"url": "https://github.com/leetm4n/type-schema.git"
},
"keywords": [
"typescript",
"json",
"schema",
"jsonschema",
"ajv",
"interface",
"decorator",
"reflection"
],
"author": "Peter Esztari <[email protected]>",
"license": "MIT",
"devDependencies": {
"@types/chai": "^4.0.4",
"@types/lodash": "^4.14.74",
"@types/mocha": "^2.2.43",
"@types/reflect-metadata": "^0.0.5",
"chai": "^4.1.2",
"coveralls": "^2.13.1",
"mocha": "^3.5.3",
"nyc": "^11.2.1",
"ts-node": "^3.3.0",
"tslint": "^5.7.0",
"tslint-config-airbnb": "^5.3.0",
"typescript": "^3.1.2"
},
"dependencies": {
"lodash": "^4.17.4",
"reflect-metadata": "^0.1.10"
}
}