-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
112 lines (112 loc) · 2.96 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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
{
"name": "@apexdevtools/benchmarker",
"version": "2.0.1",
"description": "Benchmarks performance of processes on Salesforce Orgs",
"author": {
"name": "Apex Dev Tools Team",
"email": "[email protected]",
"url": "https://github.com/apex-dev-tools"
},
"repository": "apex-dev-tools/benchmarker",
"homepage": "https://github.com/apex-dev-tools/benchmarker",
"main": "dist/src/index.js",
"types": "dist/types/src/index.d.ts",
"files": [
"db/migrations",
"dist/src",
"dist/types/src",
"docs/user",
"CHANGELOG.md"
],
"scripts": {
"build": "npm run build:clean && npm run compile",
"build:clean": "rm -rf dist",
"compile": "tsc",
"doc:generate": "typedoc --out docs/api ./src",
"lint": "eslint ./src ./test ./test_system --fix",
"prepare": "ts-patch install -s && husky",
"postversion": "npm run doc:generate",
"test": "nyc mocha --timeout 10000 'test/**/*.test.*'",
"test:only": "nyc mocha --timeout 10000",
"test:system:init": "cp test_system/.env .env",
"test:system": "mocha --timeout 30000 'test_system/**/*.test.*'"
},
"dependencies": {
"@jsforce/jsforce-node": "3.2.0",
"@salesforce/core": "7.3.6",
"axios": "1.7.9",
"cli-table": "0.3.11",
"dotenv": "16.4.5",
"lighthouse": "12.3.0",
"lodash": "4.17.21",
"moment": "2.30.1",
"pg": "8.11.5",
"pg-connection-string": "2.6.4",
"puppeteer": "22.15.0",
"tslib": "2.6.2",
"typeorm": "0.3.20"
},
"devDependencies": {
"@types/chai": "4.3.16",
"@types/chai-as-promised": "7.1.8",
"@types/cli-table": "0.3.4",
"@types/lodash": "4.17.1",
"@types/mocha": "10.0.6",
"@types/node": "20.12.12",
"@types/sinon": "17.0.3",
"@types/sinon-chai": "3.2.12",
"@typescript-eslint/eslint-plugin": "7.9.0",
"@typescript-eslint/parser": "7.9.0",
"axios-mock-adapter": "1.22.0",
"chai": "4.4.1",
"chai-as-promised": "7.1.2",
"eslint": "8.57.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-prettier": "5.1.3",
"husky": "9.0.11",
"lint-staged": "15.4.1",
"mocha": "10.4.0",
"nyc": "15.1.0",
"prettier": "3.2.5",
"public-ip": "7.0.1",
"sinon": "18.0.0",
"sinon-chai": "3.7.0",
"ts-node": "10.9.2",
"ts-patch": "3.2.1",
"typedoc": "0.25.13",
"typescript": "5.4.5"
},
"engines": {
"node": ">20.0.0"
},
"nyc": {
"check-coverage": true,
"extension": [
".ts"
],
"exclude": [
"**/*.d.ts",
"src/shared/uiHelper.ts",
"src/services/navigate/**/*.ts"
],
"functions": 80,
"include": [
"src/shared/**/*.ts",
"src/services/**/*.ts",
"src/database/**/*.ts"
],
"instrument": true,
"lines": 80,
"per-file": true,
"reporter": [
"text",
"text-summary"
],
"sourceMap": true,
"statements": 80
},
"lint-staged": {
"*.ts": "eslint --cache --cache-location .eslintcache --fix"
}
}