-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
57 lines (57 loc) · 1.52 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
{
"name": "ts-upgrade",
"version": "1.0.10",
"description": "Upgrade your typescript code to target version",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"lint": "prettier -c --config ./prettier.config.js ./src/**/*.ts ./tests/**/*.ts ./*.js",
"build": "webpack",
"test": "jest",
"coverage": "jest --coverage",
"upload-cov": "codecov",
"prettier": "prettier --config ./prettier.config.js ./src/**/*.ts ./tests/**/*.ts ./*.js --write"
},
"files": [
"src",
"dist"
],
"repository": {
"type": "git",
"url": "git+https://github.com/HearTao/ts-upgrade.git"
},
"author": "kingwl",
"license": "MIT",
"bugs": {
"url": "https://github.com/HearTao/ts-upgrade/issues"
},
"homepage": "https://github.com/HearTao/ts-upgrade#readme",
"dependencies": {
"memfs": "^3.1.2",
"ts-ez-host": "^0.0.8"
},
"peerDependencies": {
"typescript": "^4.0.0-dev.20200429"
},
"devDependencies": {
"@types/webpack-merge": "^4.1.5",
"@babel/core": "^7.9.0",
"@babel/preset-env": "^7.9.5",
"@babel/preset-typescript": "^7.9.0",
"@types/glob": "^7.1.1",
"@types/jest": "^25.2.1",
"@types/node": "^13.13.4",
"babel-jest": "^25.4.0",
"codecov": "^3.6.5",
"cross-env": "^7.0.2",
"ts-loader": "^7.0.2",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.11",
"webpack-merge": "^4.2.2",
"glob": "^7.1.6",
"jest": "^25.4.0",
"prettier": "^2.0.5",
"ts-node": "^8.9.0",
"typescript": "^4.0.0-dev.20200429"
}
}