This repository has been archived by the owner on Jul 1, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
76 lines (76 loc) · 1.89 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
68
69
70
71
72
73
74
75
76
{
"name": "tscodeshift",
"version": "0.4.1",
"description": "tscodeshift is a toolkit for running codemods over multiple TS files",
"main": "./dist/src/index.js",
"bin": "./dist/src/index.js",
"files": [
"dist",
"index.d.ts"
],
"scripts": {
"linter": "tslint --project ./tsconfig.json --type-check",
"start": "npm test -- --watch",
"clean": "rimraf dist",
"build": "tsc",
"test": "jest",
"coverage": "cat ./coverage/lcov.info | ./node_modules/.bin/coveralls",
"prerelease": "git checkout master && git pull origin master && npm test",
"release": "standard-version",
"postrelease": "git push --follow-tags origin master && npm publish"
},
"author": {
"name": "Markus Wolf",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "KnisterPeter/tscodeshift"
},
"license": "MIT",
"devDependencies": {
"@knisterpeter/standard-tslint": "^1.5.1",
"@types/common-tags": "^1.2.5",
"@types/fs-extra": "4.0.2",
"@types/jest": "21.1.2",
"@types/meow": "^3.6.2",
"@types/node": "8.0.32",
"common-tags": "^1.4.0",
"coveralls": "3.0.0",
"execa": "^0.8.0",
"globby": "^6.1.0",
"jest": "21.2.1",
"jest-cli": "^21.2.1",
"rimraf": "^2.6.1",
"standard-version": "^4.0.0",
"ts-jest": "21.0.1",
"ts-node": "^3.3.0",
"tslint": "^5.2.0",
"typescript": "^2.5.3"
},
"peerDependencies": {
"typescript": "^2.3.2"
},
"dependencies": {
"fs-extra": "^4.0.2",
"globby": "^6.1.0",
"meow": "^3.7.0",
"ts-emitter": "^0.3.1"
},
"jest": {
"transform": {
".(ts|tsx)": "<rootDir>/node_modules/ts-jest/preprocessor.js"
},
"testRegex": "\\.test\\.(ts|tsx)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"json"
],
"collectCoverage": true,
"coveragePathIgnorePatterns": [
"dist"
]
}
}