-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.38 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
{
"name": "@flxbl-io/apexlink",
"version": "4.0.1",
"description": "Wrappers around @nawforce's apexlink java pom ",
"author": "flxblio",
"homepage": "https://github.com/flxbl-io/sfp",
"license": "MIT",
"main": "lib/index",
"types": "lib/index",
"files": [
"/lib",
"/jars"
],
"dependencies": {
"@flxbl-io/sfdx-process-wrapper": "3.0.0",
"@flxbl-io/sfp-logger": "5.0.1",
"find-java-home": "2.0.0",
"fs-extra": "11.1.1"
},
"devDependencies": {
"@babel/core": "7.18.2",
"@jest/globals": "^29.6.1",
"@types/jest": "^29.5.3",
"@types/mocha": "9.1.0",
"jest": "29.6.1",
"ts-jest": "^29.1.1",
"ts-node": "10.7.0",
"typescript": "^5"
},
"repository": {
"type": "git",
"url": "https://github.com/flxbl-io/sfp-pro.git",
"directory": "packages/apexlink"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "npm run clean && npm run compile",
"clean": "rimraf ./lib && rimraf tsconfig.tsbuildinfo",
"compile": "tsc -b tsconfig.json",
"clearCache": "jest --clearCache",
"test": "FORCE_COLOR=true jest --silent --verbose true --coverage --detectOpenHandles",
"spec-test": "FORCE_COLOR=true jest -i packages/apexlink/tests/ApexDependencyCheckImpl.test.ts --verbose true --coverage --detectOpenHandles"
},
"bugs": {
"url": "https://github.com/flxbl-io/sfp/issues"
}
}