forked from robturtle/ts-transformer-interface
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.22 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
{
"name": "@bordeux/ts-transformer-interface",
"version": "2.0.0",
"description": "A TypeScript custom transformer generating runtime interface info",
"repository": {
"type": "git",
"url": "git+https://github.com/bordeux/ts-transformer-interface.git"
},
"keywords": [
"TypeScript"
],
"author": "Yang Liu",
"license": "MIT",
"scripts": {
"parser": "ts-node test/inspect/parser.ts",
"test": "tsc && node test/compile && mocha test"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"prettier": {
"singleQuote": true,
"trailingComma": "all",
"printWidth": 100
},
"bugs": {
"url": "https://github.com/bordeux/ts-transformer-interface/issues"
},
"files": [
"index.js",
"index.d.ts",
"transformer.d.ts",
"transformer.js",
"runtime-schema.d.ts",
"runtime-schema.js"
],
"homepage": "https://github.com/bordeux/ts-transformer-interface#readme",
"devDependencies": {
"@types/mocha": "^5.2.7",
"@types/node": "^18.17.15",
"husky": "^3.1.0",
"mocha": "^10.2.0",
"prettier": "^1.19.1",
"pretty-quick": "^2.0.1",
"typescript": "^5.0.0"
},
"peerDependencies": {
"typescript": ">=5.0"
}
}