-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
49 lines (49 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
{
"name": "json-dts-generator",
"version": "1.0.0",
"description": "Generate TS declaration files from JSON files.",
"homepage": "https://github.com/Asha20/json-dts-generator",
"repository": {
"type": "git",
"url": "git+https://github.com/Asha20/json-dts-generator"
},
"bugs": {
"url": "https://github.com/Asha20/json-dts-generator/issues"
},
"main": "dist/json-dts.js",
"bin": {
"json-dts-generator": "dist/json-dts.js"
},
"files": [
"dist"
],
"scripts": {
"build": "rm -r dist/ && tsc",
"watch": "tsc --watch",
"test": "jest",
"release": "standard-version"
},
"author": "Vukašin Stepanović <[email protected]>",
"license": "MIT",
"devDependencies": {
"@types/glob": "^7.1.1",
"@types/jest": "^26.0.0",
"@types/mkdirp": "^1.0.0",
"@types/node": "^14.0.13",
"jest": "^26.0.1",
"standard-version": "^8.0.0",
"ts-jest": "^26.1.0",
"typescript": "^3.9.5"
},
"dependencies": {
"glob": "^7.1.6",
"mkdirp": "^1.0.4"
},
"keywords": [
"typescript",
"json",
"declaration",
"ts",
"dts"
]
}