forked from woutervh-/typescript-is
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.43 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
{
"name": "typescript-is",
"version": "0.19.0",
"engines": {
"node": ">=6.14.4"
},
"keywords": [
"TypeScript",
"compiler",
"transformer",
"type"
],
"description": "TypeScript transformer that generates run-time type-checks.",
"main": "index.js",
"files": [
"lib/*",
"index.js",
"index.d.ts"
],
"scripts": {
"build": "rimraf lib/ && tsc --project tsconfig.json && copy-cli \"src/**/*.d.ts\" \"lib/\"",
"lint": "tslint \"src/**/*.ts\" \"test/**/*.ts\"",
"test": "npm run lint && npm run build && ttsc --project tsconfig-test.json && mocha"
},
"repository": {
"type": "git",
"url": "git+https://github.com/woutervh-/typescript-is.git"
},
"author": "Wouter van Heeswijk",
"license": "MIT",
"bugs": {
"url": "https://github.com/woutervh-/typescript-is/issues"
},
"homepage": "https://github.com/woutervh-/typescript-is#readme",
"dependencies": {
"nested-error-stacks": "^2",
"tsutils": "^3.17.1"
},
"optionalDependencies": {
"reflect-metadata": ">=0.1.12"
},
"peerDependencies": {
"typescript": "^4.1.5"
},
"devDependencies": {
"@types/mocha": "^7.0.1",
"@types/nested-error-stacks": "^2.1.0",
"@types/node": "^13.7.0",
"copy": "^0.3.2",
"mocha": "^7.0.1",
"reflect-metadata": "^0.1.12",
"rimraf": "^3.0.0",
"ts-node": "^8.6.2",
"tslint": "^6.0.0",
"ttypescript": "^1.5.10",
"typescript": "4.1.5"
}
}