-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
56 lines (56 loc) · 1.11 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
{
"name": "j2t-cli",
"version": "0.3.3",
"description": "generate d.ts file from JSON file.",
"author": {
"name": "qinchen",
"email": "[email protected]"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/ChenJinchuang/j2t-cli"
},
"keywords": [
"typescript",
"type",
"json",
"d.ts",
"json-to-type",
"convert",
"transform",
"declare"
],
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"bin": {
"j2t": "bin/j2t.js"
},
"scripts": {
"dev": "ts-node --files test/index.ts",
"test": "jest",
"test:bin": "ts-node --files src/bin/j2t.ts",
"test:cli": "ts-node --files src/cli.ts",
"build": "tsc"
},
"dependencies": {
"colors": "^1.4.0",
"commander": "^9.3.0",
"lodash": "^4.17.21"
},
"devDependencies": {
"@types/jest": "^28.1.3",
"@types/lodash": "^4.14.182",
"@types/node": "^14.16.0",
"jest": "^28.1.1",
"ts-jest": "^28.0.5",
"ts-node": "^10.8.1",
"typescript": "^4.6.4"
},
"files": [
"lib",
"bin",
"package.json",
"README.md"
]
}