This repository has been archived by the owner on Nov 15, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
78 lines (78 loc) · 2.34 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
{
"name": "eslint-plugin-pokemon",
"version": "1.0.1",
"description": "ESLint plugin for Pokemons.",
"main": "lib/index.js",
"files": [
"lib/**"
],
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/alessio-libardi/eslint-plugin-pokemon.git"
},
"keywords": [
"eslint",
"eslintplugin",
"eslint-plugin",
"playground",
"pokemon"
],
"author": "Alessio Libardi",
"license": "MIT",
"bugs": {
"url": "https://github.com/alessio-libardi/eslint-plugin-pokemon/issues"
},
"homepage": "https://github.com/alessio-libardi/eslint-plugin-pokemon#readme",
"scripts": {
"start": "npm run test",
"build": "tsc --build --clean && tsc --project tsconfig.build.json",
"format": "prettier . --write",
"format:ci": "prettier . --check",
"lint": "eslint . --fix --ignore-path .gitignore",
"lint:ci": "eslint . --ignore-path .gitignore",
"test": "jest --watch",
"test:ci": "jest --ci --coverage",
"release": "semantic-release",
"prepare": "is-ci || husky install"
},
"dependencies": {
"@typescript-eslint/utils": "^5.25.0"
},
"devDependencies": {
"@commitlint/cli": "^17.0.0",
"@commitlint/config-conventional": "^17.0.0",
"@commitlint/cz-commitlint": "^17.0.0",
"@semantic-release/changelog": "^6.0.1",
"@semantic-release/commit-analyzer": "^9.0.2",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^8.0.4",
"@semantic-release/npm": "^9.0.1",
"@semantic-release/release-notes-generator": "^10.0.3",
"@types/jest": "^27.5.1",
"@typescript-eslint/eslint-plugin": "^5.25.0",
"@typescript-eslint/parser": "^5.25.0",
"babel-jest": "^28.1.0",
"commitizen": "^4.2.4",
"eslint": "^8.16.0",
"eslint-config-prettier": "^8.5.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-eslint-plugin": "^4.2.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest": "^26.2.2",
"eslint-plugin-n": "^15.2.0",
"eslint-plugin-promise": "^6.0.0",
"husky": "^8.0.1",
"is-ci": "^3.0.1",
"jest": "^28.1.0",
"jest-watch-typeahead": "^1.1.0",
"lint-staged": "^12.4.1",
"prettier": "^2.6.2",
"prettier-config-standard": "^5.0.0",
"semantic-release": "^19.0.2",
"ts-jest": "^28.0.2",
"typescript": "^4.6.4"
},
"peerDependencies": {
"eslint": "^8.0.0"
}
}