-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathpackage.json
81 lines (81 loc) · 1.99 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
{
"name": "@cparra/apexdocs",
"version": "3.7.2",
"description": "Library with CLI capabilities to generate documentation for Salesforce Apex classes.",
"keywords": [
"apex",
"salesforce",
"documentation",
"cli",
"apex-docs",
"docs"
],
"exports": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"bin": {
"apexdocs": "./dist/cli/generate.js"
},
"scripts": {
"test": "npm run build && jest",
"test:cov": "npm run build && jest --coverage",
"build": "rimraf ./dist && npm run lint && tsc --noEmit && pkgroll",
"lint": "eslint \"./src/**/*.{js,ts}\" --quiet --fix",
"prepare": "npm run build",
"version": "npm run format && git add -A src",
"postversion": "git push && git push --tags"
},
"author": "Cesar Parra",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/cesarParra/apexdocs"
},
"devDependencies": {
"@eslint/js": "^9.6.0",
"@types/eslint__js": "^8.42.3",
"@types/jest": "^29.5.12",
"@types/node": "^20.14.10",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"husky": "^9.0.11",
"jest": "^29.7.0",
"lint-staged": "^15.2.7",
"pkgroll": "^2.4.2",
"prettier": "^3.3.2",
"rimraf": "^6.0.1",
"ts-jest": "^29.2.0",
"typescript": "^5.5.3",
"typescript-eslint": "^7.16.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,ts,tsx}": [
"eslint --fix"
]
},
"dependencies": {
"@cparra/apex-reflection": "2.16.1",
"@salesforce/source-deploy-retrieve": "^12.8.1",
"@types/js-yaml": "^4.0.9",
"@types/yargs": "^17.0.32",
"chalk": "^4.1.2",
"cosmiconfig": "^9.0.0",
"cosmiconfig-typescript-loader": "^5.0.0",
"fast-xml-parser": "^4.4.0",
"fp-ts": "^2.16.8",
"handlebars": "^4.7.8",
"js-yaml": "^4.1.0",
"minimatch": "^10.0.1",
"yargs": "^17.7.2"
},
"imports": {
"#utils/*": "./src/util/*.ts"
}
}