-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 881 Bytes
/
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
{
"name": "typescript-enhanced",
"description": "Typescript Enhanced is an extension of the existing Typescript package that modifies the functionality of the tsc command giving it some superpowers",
"author": "Pedro Pérez Furio <[email protected]>",
"repository": {
"type": "git",
"url": "https://github.com/Rzial/typescript-enhanced"
},
"version": "1.0.3",
"main": "index.js",
"bin": {
"tsce": "./bin/tsce"
},
"license": "Apache-2.0",
"dependencies": {
"semver": "^7.1.3"
},
"devDependencies": {
"eslint": "^5.16.0",
"eslint-config-google": "^0.12.0",
"typescript": "^3.8.3"
},
"peerDependencies": {
"typescript": ">= 2.8.0"
},
"keywords": [
"typescript",
"tsc",
"typescript-enhanced",
"enhanced",
"tsce",
"module alias",
"custom transformers",
"transformer",
"watcher"
]
}