-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
53 lines (53 loc) · 1.63 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
{
"name": "transformer",
"version": "1.0.0",
"description": "Transform source code automatically",
"main": "index.js",
"scripts": {
"build": "tsc",
"lint": "eslint --ext .js,.jsx,.ts,.tsx .",
"lint:quiet": "npm run lint -- --quiet",
"lint:fix": "npm run lint -- --quiet --fix",
"lint:fixOne": "eslint --ext .js,.jsx,.ts,.tsx --quiet --fix",
"lint:git": "git diff --cached --name-only --diff-filter=ACM | grep '\\.[tj]sx\\?$' |xargs eslint --quiet",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rusterser/transformer.git"
},
"author": "Yudu Ban <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/rusterser/transformer/issues"
},
"homepage": "https://github.com/rusterser/transformer#readme",
"husky": {
"hooks": {
"pre-commit": "npm run lint:git",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"dependencies": {
"ts-morph": "^7.3.0",
"ts-node": "^8.10.2",
"typescript": "^3.9.7",
"yargs": "^15.4.1"
},
"devDependencies": {
"@commitlint/cli": "^9.1.2",
"@commitlint/config-conventional": "^9.1.2",
"@types/node": "^14.6.0",
"@types/yargs": "^15.0.5",
"@typescript-eslint/eslint-plugin": "^3.9.1",
"@typescript-eslint/parser": "^3.9.1",
"eslint": "^7.7.0",
"eslint-config-standard-with-typescript": "^18.0.2",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"husky": "^4.2.5",
"tslib": "^2.0.1"
}
}