-
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.91 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 1.91 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": "@apexdevtools/git-ops",
"version": "1.4.1",
"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 ./src/ --fix",
"prepare": "husky install",
"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@8.9.2",
"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": {
"@ryansonshine/commitizen": "^4.2.8",
"@ryansonshine/cz-conventional-changelog": "^3.3.4",
"@types/jest": "^29.5.0",
"@types/node": "^18.15.11",
"@typescript-eslint/eslint-plugin": "^5.59.8",
"@typescript-eslint/parser": "^5.59.8",
"eslint": "^8.41.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^8.0.3",
"jest": "^29.5.0",
"lint-staged": "^13.2.2",
"prettier": "^2.8.8",
"ts-jest": "^29.1.0",
"typescript": "^4.9.5"
},
"config": {
"commitizen": {
"path": "./node_modules/@ryansonshine/cz-conventional-changelog"
}
},
"lint-staged": {
"*.ts": "eslint --cache --cache-location .eslintcache --fix"
}
}