-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
41 lines (41 loc) · 991 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
38
39
40
41
{
"name": "tsconfig-glob",
"version": "0.4.3",
"description": "A lightweight npm package + cli that allows you to specify glob patterns for tsconfig files",
"main": "index.js",
"bin": {
"tsconfig": "cli"
},
"repository": {
"type": "git",
"url": "https://github.com/wjohnsto/tsconfig-glob.git"
},
"keywords": [
"tsconfig",
"glob",
"filesGlob"
],
"author": "Will Johnston <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/wjohnsto/tsconfig-glob/issues"
},
"homepage": "https://github.com/wjohnsto/tsconfig-glob",
"dependencies": {
"exit": "^0.1.2",
"glob": "^7.0.3",
"resolve": "^1.1.7",
"stable": "^0.1.5"
},
"devDependencies": {
"typescript": "^1.8.9",
"typings": "^0.7.9"
},
"scripts": {
"prepublish": "npm run typings && npm run build",
"build": "tsc -p .",
"cli": "node cli",
"test": "npm run build && npm run cli",
"typings": "typings install"
}
}