-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
83 lines (83 loc) · 2.49 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
{
"name": "@flxbl-io/sfprofiles",
"version": "5.1.4",
"description": "Salesforce Profile management",
"keywords": [
"sfdx-plugin",
"salesforce",
"profiles",
"permissions"
],
"author": "flxblio",
"homepage": "https://github.com/flxbl-io/sfprofiles",
"license": "MIT",
"main": "lib/sfprofiles",
"types": "lib/sfprofiles",
"files": [
"lib",
"resources"
],
"engines": {
"node": ">=16.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/flxbl-io/sfprofiles.git"
},
"scripts": {
"build": "npm run clean && npm run compile",
"clean": "rimraf ./lib && rimraf tsconfig.tsbuildinfo",
"compile": "tsc -b tsconfig.json && tsc-alias -p tsconfig.json",
"compile:dev": "tsc -p . --sourcemap",
"clearCache": "jest --clearCache"
},
"bugs": {
"url": "https://github.com/flxbl-io/sfp/issues"
},
"devDependencies": {
"@babel/core": "7.18.2",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.17.12",
"@babel/plugin-proposal-optional-chaining": "7.17.12",
"@salesforce/ts-sinon": "^1.3.21",
"@salesforce/ts-types": "2.0.7",
"@types/async-retry": "1.4.5",
"@types/datadog-metrics": "^0.6.1",
"@types/diff-match-patch": "^1.0.32",
"@types/jest": "^29.5.3",
"@types/lodash": "^4.14.191",
"@types/mocha": "9.1.0",
"@types/node": "20.4.4",
"@types/rimraf": "^3.0.2",
"@typescript-eslint/eslint-plugin": "^5.53.0",
"@typescript-eslint/parser": "^5.53.0",
"eslint": "^8.33.0",
"jest": "^29.5.3",
"lodash": "^4.17.21",
"ts-jest": "^29.1.1",
"ts-node": "^9.1.1",
"tsc-alias": "^1.8.3",
"typescript": "^5"
},
"dependencies": {
"@flxbl-io/sfp-logger": "^5.0.0",
"@salesforce/core": "8.0.3",
"@salesforce/source-deploy-retrieve": "12.0.1",
"async-retry": "^1.3.3",
"better-sqlite3": "11.5.0",
"chalk": "^4.1.0",
"diff-match-patch": "^1.0.5",
"fs-extra": "^11.1.0",
"glob": "10.3.3",
"ignore": "^5.1.8",
"@jsforce/jsforce-node": "^3.2.0",
"node-cache": "^5.1.2",
"rimraf": "^5.0.1",
"simple-git": "^3.16.0",
"tslib": "2.1.0",
"xml-formatter": "^3.4.1",
"xml2js": "^0.6.0"
},
"publishConfig": {
"access": "public"
}
}