-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
85 lines (85 loc) · 2.59 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
77
78
79
80
81
82
83
84
85
{
"name": "import-conductor",
"version": "2.6.1",
"description": "Automatically organize your Typescript import statements",
"main": "index.js",
"scripts": {
"contributors:add": "all-contributors add",
"prebuild": "rimraf dist && npm run copy:readme",
"build": "tsc",
"build:dev": "tsc --watch",
"postbuild": "node ./scripts/post-build.js",
"commit": "git-cz",
"bump-version": "rjp package.json version $VERSION",
"copy:readme": "copyfiles ./README.md ./dist",
"format:write": "prettier --write 'index.ts'",
"test": "jest",
"start": "ts-node ./src/index.ts -s playground/sampleDir/main.ts -p '@myorg'",
"start:staged": "ts-node ./src/index.ts --staged",
"start:bar": "ts-node ./src/index.ts --dryRun -s playground/sampleDir/bar.ts",
"release": "semantic-release && node ./scripts/release.js",
"hooks:pre-commit": "npm run conduct:staged && node ./scripts/hooks/pre-commit.js",
"conduct:staged": "ts-node ./src/index.ts --staged"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "npm run hooks:pre-commit && pretty-quick --staged",
"pre-push": "npm run test"
}
},
"bin": {
"import-conductor": "index.js"
},
"repository": {
"type": "git",
"url": "https://github.com/kreuzerk/import-conductor.git"
},
"keywords": [
"Clean",
"Code",
"Imports",
"Automatization"
],
"author": "Kevin Kreuzer",
"license": "ISC",
"bugs": {
"url": "https://github.com/kreuzerk/import-conductor/issues"
},
"homepage": "https://github.com/kreuzerk/import-conductor#readme",
"dependencies": {
"changed-git-files": "0.0.1",
"command-line-args": "^5.1.1",
"command-line-usage": "^6.1.0",
"commander": "^5.1.0",
"git-changed-files": "^1.0.0",
"fast-glob": "^3.2.12",
"ora": "^4.1.0",
"pkg-up": "^3.1.0",
"simple-git": "^3.3.0",
"typescript": "^3.9.5"
},
"devDependencies": {
"@commitlint/cli": "10.0.0",
"@commitlint/config-conventional": "10.0.0",
"@semantic-release/changelog": "^3.0.6",
"@semantic-release/exec": "^3.3.8",
"@semantic-release/git": "^7.0.18",
"@types/jest": "^26.0.3",
"@types/node": "^14.0.12",
"all-contributors-cli": "^6.17.0",
"chalk": "^4.1.0",
"copyfiles": "^2.3.0",
"git-cz": "^4.7.0",
"husky": "^4.2.5",
"jest": "^26.1.0",
"prettier": "^2.0.5",
"pretty-quick": "^2.0.1",
"replace-json-property": "^1.4.3",
"rimraf": "^3.0.2",
"semantic-release": "^15.9.0",
"shelljs": "^0.8.4",
"ts-jest": "^26.1.1",
"ts-node": "^8.10.2"
}
}