forked from airbnb/ts-migrate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 1.56 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
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "ts-migrate-server",
"version": "0.1.9",
"description": "A package that contains the main migration runner and spawns a TSServer process",
"main": "build/src/index.js",
"directories": {
"test": "tests"
},
"keywords": [
"ts-migrate",
"ts-migrate-server",
"typescript",
"migration",
"codemod"
],
"files": [
"build",
"package.json",
"README.md",
"LICENCE"
],
"repository": {
"type": "git",
"url": "https://github.com/airbnb/ts-migrate.git",
"directory": "packages/ts-migrate-server"
},
"bugs": {
"url": "https://github.com/airbnb/ts-migrate/issues"
},
"scripts": {
"test": "jest --config jest-config.json",
"lint": "eslint . --ext=.js,.jsx,.ts,.tsx --ignore-path ../../.eslintignore",
"build": "tsc -p tsconfig.json",
"prepublish": "yarn build",
"clean": "rm -rf build"
},
"contributors": [
{
"name": "Brie Bunge",
"url": "https://github.com/brieb"
},
{
"name": "Sergii Rudenko",
"url": "https://github.com/Rudeg"
},
{
"name": "Elliot Sachs",
"url": "https://github.com/elliotsa"
},
{
"name": "John Haytko",
"url": "https://github.com/jjjjhhhhhh"
},
{
"name": "Joe Lencioni",
"url": "https://github.com/lencioni"
}
],
"homepage": "https://github.com/airbnb/ts-migrate#readme",
"license": "MIT",
"dependencies": {
"@ts-morph/bootstrap": "^0.6.0",
"typescript": "4.0.2",
"updatable-log": "^0.2.0"
},
"gitHead": "7acf6067f15c9bb367cda9c47fcfb4203dcc54f3"
}