forked from forcedotcom/salesforcedx-apex
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.76 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 1.76 KB
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/apex-node",
"description": "Salesforce js library for Apex",
"version": "1.3.0",
"author": "Salesforce",
"bugs": "https://github.com/forcedotcom/salesforcedx-apex/issues",
"main": "lib/src/index.js",
"dependencies": {
"@salesforce/core": "^3.23.3",
"@types/istanbul-reports": "^3.0.1",
"faye": "1.4.0",
"glob": "^8.0.3",
"istanbul-lib-coverage": "^3.2.0",
"istanbul-lib-report": "^3.0.0",
"istanbul-reports": "^3.1.4"
},
"devDependencies": {
"@salesforce/ts-sinon": "^1.1.2",
"@salesforce/ts-types": "1.2.2",
"@types/chai": "^4",
"@types/glob": "^8.0.0",
"@types/istanbul-lib-coverage": "^2.0.4",
"@types/istanbul-lib-report": "^3.0.0",
"@types/mkdirp": "0.5.2",
"@types/mocha": "^5",
"@types/node": "^14",
"@types/sinon": "^7.5.2",
"chai": "^4",
"mocha": "^5",
"mocha-junit-reporter": "^1.23.3",
"nyc": "^14.1.1",
"shx": "^0.3.4",
"sinon": "^7.3.1",
"source-map-support": "^0.5.16",
"ts-node": "^10.7.0",
"typescript": "4.6.4"
},
"homepage": "https://github.com/forcedotcom/salesforcedx-apex",
"keywords": [
"apex",
"force",
"salesforce",
"sfdx",
"salesforcedx"
],
"files": [
"lib/src"
],
"scripts": {
"build": "shx rm -rf lib && tsc -b",
"format": "prettier --config ../../.prettierrc --write './{src,test,scripts}/**/*.{ts,js,json}'",
"lint": "eslint -c .eslintrc.json --ext .ts ./src ./test",
"test": "nyc mocha",
"package": "npm pack"
},
"husky": {
"hooks": {
"pre-commit": "yarn lint-staged"
}
},
"lint-staged": {
"./{src,test}/**/*.{ts,js}": [
"eslint -c .eslintrc.json --fix"
]
},
"license": "BSD-3-Clause",
"engines": {
"node": ">=14.14.0"
}
}