forked from forcedotcom/salesforcedx-apex
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
97 lines (97 loc) · 2.8 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
92
93
94
95
96
97
{
"name": "@salesforce/apex-node",
"description": "Salesforce JS library for Apex",
"version": "8.1.4",
"author": "Salesforce",
"bugs": "https://github.com/forcedotcom/salesforcedx-apex/issues",
"main": "lib/src/index.js",
"dependencies": {
"@jsforce/jsforce-node": "^3.4.1",
"@salesforce/core": "^8.4.0",
"@salesforce/kit": "^3.2.1",
"@types/istanbul-reports": "^3.0.4",
"bfj": "8.0.0",
"fast-glob": "^3.3.2",
"faye": "1.4.0",
"istanbul-lib-coverage": "^3.2.2",
"istanbul-lib-report": "^3.0.1",
"istanbul-reports": "^3.1.7"
},
"devDependencies": {
"@commitlint/config-conventional": "^18.6.3",
"@salesforce/ts-sinon": "^1.4.24",
"@salesforce/ts-types": "^2.0.10",
"@types/chai": "^4.3.17",
"@types/glob": "^8.1.0",
"@types/istanbul-lib-coverage": "^2.0.6",
"@types/istanbul-lib-report": "^3.0.3",
"@types/mocha": "^10.0.7",
"@types/node": "^18",
"@types/sinon": "^17.0.3",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"chai": "^4.5.0",
"commitlint": "^18.6.1",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-header": "^3.0.0",
"eslint-plugin-jsdoc": "^46.10.1",
"eslint-plugin-prettier": "^5.2.1",
"husky": "^8.0.0",
"lint-staged": "^15.2.9",
"mocha": "^10.7.3",
"mocha-junit-reporter": "^2.2.1",
"nyc": "^15.1.0",
"prettier": "^3.3.3",
"shx": "^0.3.4",
"sinon": "^17.0.1",
"source-map-support": "^0.5.16",
"ts-node": "^10.9.2",
"typescript": "^5.5.4"
},
"resolutions": {
"@jsforce/jsforce-node/node-fetch/whatwg-url": "^14.0.0"
},
"homepage": "https://github.com/forcedotcom/salesforcedx-apex",
"keywords": [
"apex",
"force",
"salesforce",
"sfdx",
"salesforcedx"
],
"files": [
"lib/src"
],
"scripts": {
"build": "shx rm -rf lib && tsc -b",
"compile": "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",
"test": "nyc mocha ./test/**/*.test.ts",
"package": "yarn pack",
"prettier": "prettier ./**/*.{js,json,ts,md} --write",
"format:check": "prettier ./**/*.{js,json,ts,md} --debug-check",
"prepare": "husky install"
},
"lint-staged": {
"./{src,test}/**/*.{ts,js}": [
"eslint -c .eslintrc.json --fix"
]
},
"license": "BSD-3-Clause",
"engines": {
"node": ">=18.18.2"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"publishConfig": {
"access": "public"
}
}