-
Notifications
You must be signed in to change notification settings - Fork 64
/
package.json
45 lines (45 loc) · 971 Bytes
/
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
{
"name": "@oracle/suitecloud-cli",
"version": "2.0.0",
"license": "UPL-1.0",
"description": "SuiteCloud CLI for Node.js",
"keywords": [
"NetSuite",
"SDF",
"SuiteApp",
"SuiteCloud",
"SuiteScripts"
],
"publishConfig": {
"access": "public"
},
"bugs": {
"url": "https://github.com/oracle/netsuite-suitecloud-sdk/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/oracle/netsuite-suitecloud-sdk.git#master"
},
"main": "./src/suitecloud.js",
"preferGlobal": true,
"sdkFilename": "cli-2024.2.0.jar",
"nsCompatibleVersion": "2024.2",
"sdkDownloadUrl": "https://system.netsuite.com/download/suitecloud-sdk/24.2",
"bin": {
"suitecloud": "src/suitecloud.js"
},
"dependencies": {
"chalk": "4.1.2",
"cli-spinner": "0.2.10",
"commander": "11.1.0",
"inquirer": "8.2.6",
"xml2js": "0.6.2"
},
"devDependencies": {
"jest": "29.7.0"
},
"scripts": {
"test": "jest",
"postinstall": "node postinstall.js"
}
}