forked from MrMaxie/ts-types-parser
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.02 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.02 KB
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
{
"name": "ts-types-parser",
"version": "2.0.0",
"description": "Parse TypeScript types definitions into... something else",
"scripts": {
"build": "tsc -p .",
"watch": "tsc -p . -w",
"test": "ava",
"test:watch": "ava --watch"
},
"ava": {
"extensions": [ "ts" ],
"require": [ "ts-node/register" ]
},
"repository": {
"type": "git",
"url": "git+https://github.com/MrMaxie/ts-types-parser.git"
},
"keywords": [
"typescript",
"ts",
"parser",
"types",
"convert"
],
"bugs": {
"url": "https://github.com/MrMaxie/ts-types-parser/issues"
},
"homepage": "https://github.com/MrMaxie/ts-types-parser#readme",
"main": "./dist/main.js",
"author": "Maciej (Maxie) Mieńko",
"license": "Apache-2.0",
"devDependencies": {
"@types/node": "14.14.22",
"ava": "3.15.0",
"ts-node": "9.1.1"
},
"dependencies": {
"typescript": "4.1.3"
}
}