forked from tusharmath/ts-codemod
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.35 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
{
"name": "ts-codemod",
"bin": "bin/cli",
"version": "0.0.0-development",
"description": "Code-Modifier for Typescript based projects",
"main": "index.js",
"scripts": {
"test": "mocha --require=ts-node/register test/*.ts",
"prepublishOnly": "tsc -d",
"semantic-release": "semantic-release",
"travis-deploy-once": "travis-deploy-once --pro",
"prettier": "git ls-files | grep '.ts$' | xargs prettier --write --config=.prettierrc"
},
"author": "Tushar Mathur <tusharmath@gmail.com>",
"license": "ISC",
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"keywords": [
"large",
"typescript",
"code",
"mod",
"modifiers",
"project",
"scale"
],
"repository": {
"type": "git",
"url": "https://github.com/tusharmath/ts-codemod.git"
},
"devDependencies": {
"@types/mocha": "^5.2.4",
"@types/node": "^10.5.2",
"@types/ramda": "^0.25.34",
"cz-conventional-changelog": "^2.1.0",
"mocha": "^5.2.0",
"prettier": "^1.13.7",
"semantic-release": "^15.7.1",
"travis-deploy-once": "^5.0.1",
"typescript": "^2.9.2"
},
"dependencies": {
"@types/fs-extra": "^5.0.4",
"@types/yargs": "^11.1.0",
"chalk": "^2.4.1",
"debug": "^3.1.0",
"fs-extra": "^6.0.1",
"ts-node": "^7.0.0",
"yargs": "^12.0.1"
}
}