-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
62 lines (62 loc) · 1.6 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
{
"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",
"lint": "tslint --project .",
"prepublishOnly": "tsc -d",
"prettier": "git ls-files | grep -E '.*\\.(ts|md|json)$' | xargs prettier --write --config=.prettierrc",
"semantic-release": "semantic-release",
"travis-deploy-once": "travis-deploy-once --pro"
},
"author": "Tushar Mathur <[email protected]>",
"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/debug": "^4.1.5",
"@types/fs-extra": "^8.0.1",
"@types/json5": "^0.0.30",
"@types/mocha": "^5.2.7",
"@types/node": "^12.12.6",
"@types/ramda": "^0.26.33",
"@types/yargs": "^13.0.3",
"cz-conventional-changelog": "^3.0.2",
"mocha": "^6.2.2",
"prettier": "^1.18.2",
"semantic-release": "^15.13.30",
"travis-deploy-once": "^5.0.11",
"tslint": "^5.20.1",
"tslint-config-prettier": "^1.18.0"
},
"dependencies": {
"chalk": "^2.4.2",
"debug": "^4.1.1",
"fs-extra": "^8.1.0",
"json5": "^2.1.1",
"ramda": "^0.26.1",
"ts-curry": "^1.0.4",
"ts-node": "^8.4.1",
"typescript": "^3.7.2",
"yargs": "^14.2.0"
}
}