-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
60 lines (60 loc) · 1.57 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
{
"name": "node-typechecker",
"version": "1.2.0",
"description": "Utility that allows to check that an object validates a predefined contract",
"main": "js/TypeChecker.js",
"scripts": {
"test": "mocha tests/TypeChecker.ts --require ts-node/register --bail",
"cover": "nyc --report-dir tests/coverage npm run test",
"lint": "eslint ./src ./tests index.d.ts",
"build": "rm -rf js && tsc --project tsconfig-build.json"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/RemyJeancolas/node-typechecker.git"
},
"keywords": [
"type",
"checker",
"validator",
"typechecker",
"decorator",
"typescript",
"reflection",
"entity",
"validation",
"casting",
"dynamic",
"instantiation"
],
"engines": {
"node": ">= 6.2.0"
},
"author": "Rémy Jeancolas",
"license": "MIT",
"bugs": {
"url": "https://github.com/RemyJeancolas/node-typechecker/issues"
},
"homepage": "https://github.com/RemyJeancolas/node-typechecker#readme",
"dependencies": {
"reflect-metadata": "^0.1.13"
},
"devDependencies": {
"@types/chai": "^4.3.1",
"@types/mocha": "^9.1.1",
"@types/sinon": "^10.0.13",
"@typescript-eslint/eslint-plugin": "^5.32.0",
"@typescript-eslint/parser": "^5.32.0",
"chai": "^4.3.6",
"eslint": "^8.21.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"mocha": "^10.0.0",
"nyc": "^15.1.0",
"prettier": "^2.7.1",
"sinon": "^14.0.0",
"ts-node": "^10.9.1",
"typescript": "^4.7.4"
},
"typings": "index.ts"
}