-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
68 lines (68 loc) · 1.66 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
{
"name": "@jaredmcateer/eslint-plugin-shouldjs",
"version": "1.0.0",
"description": "A collection of Should.js rules",
"keywords": [
"eslint",
"eslintplugin",
"eslint-plugin",
"should",
"shouldjs",
"should-js",
"should.js"
],
"author": "Jared McAteer <[email protected]>",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/**/*"
],
"scripts": {
"clean": "rm -rf dist",
"build": "npm run clean && tsc -b tsconfig.json",
"format": "prettier --write . --config .prettierrc --ignore .prettierignore",
"prepare": "husky install",
"lint": "eslint .",
"test": "jest",
"coverage": "jest --coverage"
},
"devDependencies": {
"@commitlint/cli": "^16.2.3",
"@commitlint/config-conventional": "^16.2.1",
"@typescript-eslint/eslint-plugin": "^5.19.0",
"@typescript-eslint/parser": "^5.19.0",
"eslint": "^8.13.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-eslint-plugin": "^4.1.0",
"eslint-plugin-node": "^11.1.0",
"husky": "^7.0.4",
"jest": "^27.5.1",
"prettier": "^2.6.2",
"semantic-release": "^19.0.2",
"ts-jest": "^27.1.4",
"typescript": "^4.6.3"
},
"engines": {
"node": "12.x || 14.x || >= 16"
},
"peerDependencies": {
"eslint": ">=6"
},
"release": {
"branches": [
"main"
]
},
"homepage": "https://github.com/jaredmcateer/eslint-plugin-shouldjs",
"repository": {
"type": "git",
"url": "https://github.com/jaredmcateer/eslint-plugin-shouldjs"
},
"publishConfig": {
"access": "public"
},
"license": "ISC",
"dependencies": {
"@typescript-eslint/utils": "^5.19.0"
}
}