generated from forcedotcom/library-template
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
70 lines (70 loc) · 2.21 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
{
"name": "@salesforce/vscode-service-provider",
"version": "1.2.2",
"description": "Library that provides access to Salesforce VSCode Service Provider",
"main": "lib/src/index.js",
"author": "Peter Hale <[email protected]>",
"license": "BSD-3-Clause",
"homepage": "https://github.com/forcedotcom/salesforcedx-vscode-service-provider",
"repository": {
"type": "git",
"url": "https://github.com/forcedotcom/salesforcedx-vscode-service-provider"
},
"devDependencies": {
"@commitlint/config-conventional": "^19.6.0",
"@salesforce/dev-config": "^4.3.1",
"@types/istanbul-lib-coverage": "^2.0.6",
"@types/istanbul-lib-report": "^3.0.3",
"@types/jest": "^29.5.14",
"@types/node": "^20.17.12",
"@types/vscode": "^1.96.0",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/parser": "^7.18.0",
"commitlint": "^19.6.1",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.57.1",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-header": "^3.0.0",
"eslint-plugin-jsdoc": "^48.11.0",
"eslint-plugin-prettier": "^5.2.1",
"husky": "^9.1.7",
"jest": "^29.7.0",
"lint-staged": "^15.3.0",
"mocha": "^10.8.2",
"prettier": "^3.4.2",
"shx": "^0.3.4",
"source-map-support": "^0.5.16",
"ts-jest": "^29.2.5",
"ts-node": "^10.7.0",
"typescript": "^5.7.3",
"vscode-test": "^1.6.1"
},
"files": [
"lib/src"
],
"scripts": {
"test": "jest --coverage",
"build": "shx rm -rf lib && tsc -b",
"commit-init": "commitizen init cz-conventional-changelog --save-dev --save-exact --force",
"commit": "git-cz",
"format": "prettier --config ./.prettierrc --write './{src,test,scripts}/**/*.{ts,js,json}'",
"lint": "eslint -c .eslintrc.json --ext .ts ./src ./test",
"package": "yarn pack",
"prettier": "prettier ./**/*.{js,json,ts,md} --write",
"format:check": "prettier ./**/*.{js,json,ts,md} --debug-check",
"prepare": "husky install"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"lint-staged": {
"./{src,test}/**/*.{ts,js}": [
"eslint -c .eslintrc.json --fix"
]
},
"engines": {
"node": ">=18.18.2"
}
}