-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2.28 KB
/
package.json
File metadata and controls
79 lines (79 loc) · 2.28 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
72
73
74
75
76
77
78
79
{
"name": "@forgerock/fr-config-manager",
"version": "1.5.13-0",
"description": "Sample tools for managing PingOne Advanced Identity Cloud configuration",
"devDependencies": {
"husky": "^9.1.7",
"lockfile-lint": "^5.0.0",
"prettier": "2.8.2"
},
"dependencies": {
"axios": "^1.15.0",
"cli-table3": "^0.6.3",
"dotenv": "^16.4.5",
"fs-extra": "^11.2.0",
"glob": "^13.0.5",
"https-proxy-agent": "^7.0.5",
"jest": "^30.1.3",
"jsonwebtoken": "^9.0.0",
"lodash": "^4.18.0",
"node-fetch": "^3.3.2",
"node-jose": "^2.1.1",
"qs": "^6.11.0",
"replace-in-file": "^8.1.0",
"sanitize-filename": "^1.6.3",
"slugify": "^1.6.5",
"uglify-js": "^3.14.3",
"uuid": "^10.0.0",
"yargs": "^17.7.2"
},
"scripts": {
"sync-versions": "node scripts/update-versions.js",
"version": "npm run sync-versions && git add packages/*/package.json",
"test": "npm run test --workspaces",
"format-code": "npx prettier --write .",
"prepare": "husky",
"security:audit": "npm audit --audit-level=high",
"security:lockfile": "lockfile-lint --path package-lock.json --allowed-hosts npm --validate-https"
},
"repository": {
"type": "git",
"url": "https://github.com/ForgeRock/fr-config-manager"
},
"bugs": {
"url": "https://github.com/forgerock/fr-config-manager/issues"
},
"homepage": "https://github.com/ForgeRock/fr-config-manager",
"workspaces": [
"./packages/fr-config-pull",
"./packages/fr-config-push",
"./packages/fr-config-common",
"./packages/fr-config-promote",
"./packages/fr-config-delete"
],
"bin": {
"fr-config-pull": "./packages/fr-config-pull/src/index.js",
"fr-config-push": "./packages/fr-config-push/src/index.js",
"fr-config-promote": "./packages/fr-config-promote/src/index.js",
"fr-config-delete": "./packages/fr-config-delete/src/index.js"
},
"contributors": [
{
"name": "Christian Brindley",
"email": "christian.brindley@forgerock.com"
},
{
"name": "Kevin Schneider",
"email": "kevin.schneider@forgerock.com"
},
{
"name": "Adam Crockett",
"email": "adam.crockett@forgerock.com"
},
{
"name": "Jelle Verbraak",
"email": "jelle.verbraak@pingidentity.com"
}
],
"license": "MIT"
}