-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
74 lines (74 loc) · 2.06 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
{
"name": "eslint-plugin-sf-plugin",
"version": "1.20.13",
"engines": {
"node": ">=18.0.0"
},
"main": "dist/index.js",
"type": "commonjs",
"files": [
"dist",
"package.json",
"README.md",
"LICENSE.txt"
],
"repository": "salesforcecli/eslint-plugin-sf-plugin",
"dependencies": {
"@salesforce/core": "^8.8.0",
"@typescript-eslint/utils": "^7.18.0"
},
"devDependencies": {
"@salesforce/prettier-config": "^0.0.3",
"@types/eslint": "^8.56.5",
"@types/estree": "^1.0.6",
"@types/jest": "^29.5.14",
"@types/node": "^20.17.11",
"@typescript-eslint/eslint-plugin": "^7.17.0",
"@typescript-eslint/parser": "^7.17.0",
"@typescript-eslint/rule-tester": "^7.17.0",
"eslint": "^8.57.1",
"eslint-config-prettier": "^8.10.0",
"eslint-config-salesforce": "^2.2.0",
"eslint-config-salesforce-license": "^0.2.0",
"eslint-config-salesforce-typescript": "^1.1.3",
"eslint-doc-generator": "^1.7.1",
"eslint-plugin-eslint-plugin": "^5.5.1",
"eslint-plugin-header": "^3.1.1",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jsdoc": "^46.10.1",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^7",
"jest": "^29.7.0",
"lint-staged": "^13.3.0",
"prettier": "^2.8.8",
"pretty-quick": "^3.3.1",
"ts-jest": "^29.2.5",
"typescript": "^5.7.3"
},
"scripts": {
"build": "tsc -p .",
"build:watch": "tsc -p tsconfig.json --watch",
"lint": "yarn eslint .",
"test": "jest --coverage",
"test:watch": "jest --watch",
"docs": "eslint-doc-generator --config-emoji migration,✈️ --config-emoji library,📚",
"docs:init": "eslint-doc-generator --config-emoji migration,✈️ --config-emoji library,📚 --init-rule-docs"
},
"homepage": "https://github.com/salesforcecli/eslint-plugin-sf-plugin",
"publishConfig": {
"access": "public"
},
"license": "BSD-3-Clause",
"keywords": [
"force",
"salesforce",
"sf",
"plugins",
"eslint"
],
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
}
}