-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
91 lines (91 loc) · 2.41 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
86
87
88
89
90
91
{
"name": "clinter",
"version": "1.17.0",
"description": "A cli tool to quickly generate eslint configurations",
"main": "build/index.js",
"scripts": {
"lint": "eslint ./src",
"test": "jest",
"test:unit": "jest --projects jest-unit.config.js",
"test:e2e": "yarn build && jest --projects jest-e2e.config.js",
"test:e2e:ci": "jest --projects jest-e2e.config.js",
"build": "rm -rf ./build && ttsc",
"release": "yarn build && semantic-release"
},
"files": [
"build",
"CHANGELOG.md",
"package.json",
"yarn.lock"
],
"bin": {
"clinter": "./build/index.js"
},
"keywords": [
"eslint",
"prettier",
"linter",
"formatter"
],
"author": "Francois Hendriks",
"license": "ISC",
"devDependencies": {
"@commitlint/cli": "^12.1.4",
"@commitlint/config-conventional": "^12.1.4",
"@schemastore/package": "^0.0.6",
"@semantic-release/changelog": "^5.0.1",
"@semantic-release/git": "^9.0.0",
"@semantic-release/release-notes-generator": "^9.0.3",
"@types/child-process-promise": "^2.2.2",
"@types/eslint": "^7.28.0",
"@types/jest": "^26.0.24",
"@types/prettier": "^2.3.2",
"@types/signale": "^1.4.2",
"@types/inquirer": "^7.3.3",
"@types/uuid": "^8.3.1",
"@types/workerpool": "^6.0.1",
"@types/yargs": "^17.0.2",
"@typescript-eslint/eslint-plugin": "^4.28.3",
"@typescript-eslint/parser": "^4.28.3",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-prettier": "^3.4.0",
"jest": "^27.0.6",
"prettier": "^2.3.2",
"semantic-release": "^17.4.4",
"ts-jest": "^27.0.3",
"ttypescript": "^1.5.15",
"typescript": "^4.3.5",
"typescript-transform-paths": "^3.1.0",
"uuid": "^8.3.2"
},
"dependencies": {
"boxen": "^5.0.1",
"child-process-promise": "^2.2.1",
"comment-json": "^4.1.0",
"eslint": "^7.31.0",
"inquirer": "^8.1.2",
"signale": "^1.4.0",
"workerpool": "^6.1.5",
"yargs": "^17.0.1"
},
"release": {
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
[
"@semantic-release/changelog",
{
"changelogFile": "CHANGELOG.md"
}
],
"@semantic-release/npm",
"@semantic-release/git"
],
"ci": false
},
"repository": {
"type": "git",
"url": "ssh://[email protected]/theodo/clinter.git"
}
}