-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.02 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
{
"name": "derive-ts",
"version": "1.1.2",
"author": "Jake Cyr",
"license": "ISC",
"repository": {
"type": "git",
"url": "https://github.com/jakecyr/derive-ts.git"
},
"description": "Simple library to derive TypeScript interfaces from JS object / JSON examples",
"main": "src/index.js",
"bin": "src/index.js",
"scripts": {
"start": "node index.js",
"prepack": "tsc",
"test": "jest",
"coverage": "jest --coverage",
"build": "tsc"
},
"keywords": [
"typescript",
"interface",
"type",
"derive",
"json",
"javascript"
],
"dependencies": {
"commander": "^9.3.0",
"fs-extra": "^10.1.0",
"lodash": "^4.17.21",
"prettier": "^2.7.0"
},
"devDependencies": {
"@types/fs-extra": "^9.0.13",
"@types/lodash": "^4.14.182",
"@types/prettier": "^2.6.3",
"@babel/preset-env": "^7.22.10",
"@babel/preset-typescript": "^7.22.5",
"@types/jest": "^29.5.4",
"@types/qs": "^6.9.7",
"jest": "^29.6.3",
"typescript": "^5.1.6"
}
}