forked from googleinterns/typescript-flag-upgrade
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
55 lines (55 loc) · 1.57 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
52
53
54
55
{
"name": "typescript-flag-upgrade",
"version": "1.0.0",
"description": "CLI tool that automatically and programatically upgrades TypeScript codebases to follow strict compiler flags.",
"main": "index.js",
"directories": {
"doc": "docs",
"test": "test"
},
"scripts": {
"test": "ts-node -r tsconfig-paths/register node_modules/jasmine/bin/jasmine --config=jasmine.json",
"dev": "ts-node -r tsconfig-paths/register src/index.ts",
"experimental": "ts-node -r tsconfig-paths/register experimental/index.ts",
"check": "gts check",
"clean": "gts clean",
"compile": "tsc",
"fix": "gts fix",
"prepare": "npm run compile",
"pretest": "npm run compile",
"posttest": "npm run check"
},
"repository": {
"type": "git",
"url": "git+https://github.com/googleinterns/typescript-flag-upgrade.git"
},
"keywords": [
"typescript",
"compiler",
"flag"
],
"author": "Raymond Guo <guorlei@google.com>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/googleinterns/typescript-flag-upgrade/issues"
},
"homepage": "https://github.com/googleinterns/typescript-flag-upgrade#readme",
"dependencies": {
"chalk": "^4.1.0",
"lodash": "^4.17.19",
"path": "^0.12.7",
"ts-morph": "^7.1.1",
"yargs": "^15.3.1"
},
"devDependencies": {
"@types/jasmine": "^3.5.10",
"@types/lodash": "^4.14.156",
"@types/node": "^14.0.13",
"@types/yargs": "^15.0.5",
"gts": "^2.0.2",
"jasmine": "^3.5.0",
"ts-node": "^8.10.2",
"tsconfig-paths": "^3.9.0",
"typescript": "^3.9.5"
}
}