-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
50 lines (50 loc) · 1.37 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
{
"name": "tsc-resolve",
"version": "1.0.6",
"description": "A tool for resolving typescript modules defined in tsconfig.json",
"homepage": "https://github.com/mazhlekov/tsc-resolve",
"author": "Dimitar Mazhlekov <[email protected]>",
"license": "MIT",
"keywords": [
"tsc-resolve",
"typescript",
"tsconfig",
"nodejs",
"module"
],
"repository": {
"type": "git",
"url": "https://github.com/mazhlekov/tsc-resolve"
},
"bugs": {
"url": "https://github.com/mazhlekov/tsc-resolve/issues"
},
"main": "build/index.js",
"typings": "./build/index.d.ts",
"bin": {
"tsc-resolve": "./build/cli.js"
},
"engines": {
"node": ">=4.2.0"
},
"dependencies": {
"bluebird": "3.5.0",
"graceful-fs": "4.1.11",
"tsconfig": "6.0.0",
"tslib": "1.7.1",
"yargs": "8.0.1"
},
"devDependencies": {
"@types/bluebird-global": "3.5.2",
"@types/node": "7.0.27",
"bithound": "^1.7.0",
"shx": "0.2.2",
"tslint": "5.4.2",
"typescript": "2.3.4"
},
"scripts": {
"build": "tslint -p tsconfig.json && shx rm -rf build && tsc",
"bithound": "bithound check [email protected]:mazhlekov/tsc-resolve.git",
"prepublishOnly": "npm install && npm run build"
}
}