This repository has been archived by the owner on Feb 8, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.65 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
{
"name": "@absolunet/oasa-sdk",
"version": "0.1.0",
"description": "Okta Advanced Server Access (formally ScaleFT) SDK",
"definition": "",
"homepage": "https://documentation.absolunet.com/node-oasa-sdk",
"author": {
"name": "Absolunet",
"url": "https://absolunet.com"
},
"keywords": [
"cli",
"okta",
"scaleft",
"sdk",
"sft"
],
"license": "MIT",
"repository": {
"url": "git://github.com/absolunet/node-oasa-sdk.git",
"type": "git"
},
"bugs": {
"url": "https://github.com/absolunet/node-oasa-sdk/issues"
},
"engines": {
"node": ">= 12"
},
"main": "dist/node",
"scripts": {
"manager:install": "node manager --task=install",
"manager:outdated": "node manager --task=outdated",
"manager:build": "node manager --task=build",
"manager:watch": "node manager --task=watch",
"manager:documentation": "node manager --task=documentation",
"manager:prepare": "node manager --task=prepare",
"manager:rebuild": "node manager --task=rebuild",
"manager:publish": "node manager --task=publish",
"manager:publish:unsafe": "node manager --task=publish:unsafe",
"test": "node test --scope=all",
"test:standards": "node test --scope=standards",
"test:unit": "node test --scope=unit",
"test:feature": "node test --scope=feature",
"test:integration": "node test --scope=integration",
"test:endtoend": "node test --scope=endtoend"
},
"devDependencies": {
"@absolunet/manager": "2.1.0",
"@absolunet/tester": "4.2.0"
},
"dependencies": {
"@absolunet/capturing-group-values": "^1.0.0",
"@absolunet/joi": "^0.3.0",
"@absolunet/terminal": "^3.1.0"
}
}