-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
51 lines (51 loc) · 1.16 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
51
{
"name": "tsconfig.js",
"version": "3.0.0",
"description": "Polyfill for tsconfig.js, because TypeScript does not natively support JS config files",
"main": "index.js",
"bin": "cli.js",
"files": [
"cli.js",
"once.js",
"watch.js",
"src/*.js"
],
"scripts": {
"test": "ava --serial"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/rasenplanscher/tsconfig.js.git"
},
"keywords": [
"TypeScript",
"tsconfig",
"configuration-management"
],
"author": "rasenplanscher",
"license": "MIT",
"bugs": {
"url": "https://github.com/rasenplanscher/tsconfig.js/issues"
},
"homepage": "https://github.com/rasenplanscher/tsconfig.js#readme",
"devDependencies": {
"ava": "^3.12.1",
"proxyquire": "^2.1.3",
"readdirp": "^3.4.0",
"toml-require": "^1.2.0",
"ts-node": "^9.0.0",
"tsconfigs": "^5.0.0",
"typescript": "^4.0.2"
},
"dependencies": {
"chokidar": "^3.4.2",
"dependency-graph": "^0.9.0",
"fs-extra": "^9.0.1",
"minimist": "^1.2.5",
"pretty-format": "^26.4.2",
"winston": "^3.3.3"
},
"optionalDependencies": {
"interpret": "^2.0.0"
}
}