-
Notifications
You must be signed in to change notification settings - Fork 57
/
package.json
84 lines (84 loc) · 2.58 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
{
"name": "@salesforce/templates",
"version": "62.0.3",
"description": "Salesforce JS library for templates",
"bugs": "https://github.com/forcedotcom/salesforcedx-templates/issues",
"main": "lib/index.js",
"author": "Salesforce",
"homepage": "https://github.com/forcedotcom/salesforcedx-templates",
"license": "BSD-3-Clause",
"files": [
"/lib",
"/messages"
],
"dependencies": {
"@salesforce/kit": "^3.2.3",
"ejs": "^3.1.10",
"got": "^11.8.2",
"hpagent": "^1.2.0",
"mime-types": "^2.1.35",
"proxy-from-env": "^1.1.0",
"tar": "^6.2.1",
"tslib": "^2.6.2"
},
"devDependencies": {
"@salesforce/dev-config": "^4.3.1",
"@salesforce/dev-scripts": "^6.0.3",
"@salesforce/prettier-config": "^0.0.3",
"@types/chai-as-promised": "^7.1.8",
"@types/ejs": "^3.1.5",
"@types/got": "^9.6.12",
"@types/mime-types": "^2.1.4",
"@types/proxy-from-env": "^1.0.4",
"@types/tar": "^6.1.8",
"@typescript-eslint/eslint-plugin": "^5.30.7",
"@typescript-eslint/parser": "^5.30.7",
"chai": "^4.5.0",
"chai-as-promised": "^7.1.2",
"commitizen": "^4.3.1",
"cz-conventional-changelog": "^3.3.0",
"esbuild": "^0.24.0",
"eslint": "^7.27.0",
"eslint-config-prettier": "^6.11.0",
"eslint-config-salesforce": "^0.1.6",
"eslint-config-salesforce-license": "^0.1.6",
"eslint-config-salesforce-typescript": "^0.2.7",
"eslint-plugin-header": "^3.0.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jsdoc": "^46.10.1",
"eslint-plugin-prettier": "^3.1.3",
"husky": "^8.0.3",
"mocha": "^10.8.2",
"nyc": "^15.1.0",
"prettier": "^2.0.5",
"pretty-quick": "^3.1.0",
"shelljs": "^0.8.5",
"shx": "^0.3.4",
"sinon": "^18",
"ts-morph": "^24.0.0",
"ts-node": "^10.9.2",
"typescript": "^5.4.5"
},
"engines": {
"node": ">=18.18.2"
},
"scripts": {
"build": "yarn run clean:lib && yarn build:templates && yarn compile",
"build:templates": "node scripts/build-templates",
"clean:lib": "shx rm -rf lib && shx rm -rf coverage && shx rm -rf .nyc_output",
"commit": "git-cz",
"compile": "tsc -b",
"lint": "eslint -c .eslintrc.json --ext .ts ./src ./test",
"lint:fix": "eslint -c .eslintrc.json --ext .ts ./src ./test --fix",
"test": "nyc --exclude src/i18n/localization.ts --extension .ts mocha --parallel --forbid-only \"test/**/*.test.ts\" --timeout 600000",
"prepare": "husky install"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"publishConfig": {
"access": "public"
}
}