-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 1.89 KB
/
Copy pathpackage.json
File metadata and controls
71 lines (71 loc) · 1.89 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
71
{
"name": "@apexdevtools/git-ops",
"version": "1.4.2",
"description": "Library to do git operations to find changed files in a given git repository",
"author": {
"name": "Apex Dev Tools Team",
"email": "apexdevtools@gmail.com",
"url": "https://github.com/apex-dev-tools"
},
"main": "./lib/src/index.js",
"license": "BSD-3-Clause",
"files": [
"lib/**/*",
"CHANGELOG.md"
],
"scripts": {
"build": "tsc",
"clean": "rm -rf ./lib/",
"commit": "cz",
"lint": "eslint --cache --cache-location .eslintcache ./src --fix",
"prepare": "husky",
"test": "jest --coverage --runInBand",
"test:watch": "jest --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/apex-dev-tools/git-ops.git"
},
"keywords": [
"salesforce",
"source"
],
"bugs": {
"url": "https://github.com/apex-dev-tools/git-ops/issues"
},
"homepage": "https://github.com/apex-dev-tools/git-ops#readme",
"packageManager": "pnpm@10.23.0",
"engines": {
"node": "^20.19.0 || ^22.13.0 || >=24"
},
"dependencies": {
"@salesforce/core": "^4.3.11",
"@salesforce/source-deploy-retrieve": "^9.2.8",
"@salesforce/source-tracking": "^4.2.2",
"simple-git": "^3.16.0"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@ryansonshine/commitizen": "^4.2.8",
"@ryansonshine/cz-conventional-changelog": "^3.3.4",
"@types/jest": "^30.0.0",
"@types/node": "^22.19.17",
"eslint": "^10.2.1",
"eslint-config-prettier": "^10.1.8",
"husky": "^9.1.7",
"jest": "^30.3.0",
"lint-staged": "^17.0.2",
"prettier": "^3.8.3",
"ts-jest": "^29.4.5",
"typescript": "^6.0.3",
"typescript-eslint": "^8.59.0"
},
"config": {
"commitizen": {
"path": "./node_modules/@ryansonshine/cz-conventional-changelog"
}
},
"lint-staged": {
"*.ts": "eslint --cache --cache-location .eslintcache --fix"
}
}