-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 986 Bytes
/
Copy pathpackage.json
File metadata and controls
43 lines (43 loc) · 986 Bytes
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
{
"name": "tsnow",
"version": "0.0.0",
"description": "TypeScript-based tools for ServiceNow",
"main": "dist/index.js",
"type": "module",
"scripts": {
"build": "tsc",
"test": "jest",
"prepublishOnly": "npm run build"
},
"bin": {
"tsnow": "bin/tsnow"
},
"repository": {
"type": "git",
"url": "git+https://github.com/chovanecm/tsnow.git"
},
"author": "Martin Chovanec",
"license": "GPL",
"bugs": {
"url": "https://github.com/chovanecm/tsnow/issues"
},
"homepage": "https://github.com/chovanecm/tsnow#readme",
"dependencies": {
"commander": "^12.1.0",
"flatted": "^3.3.2",
"get-proxy-settings": "^0.1.13",
"https-proxy-agent": "^7.0.5",
"ncp": "^2.0.0",
"node-zip": "^1.1.1",
"prompt-password": "^1.2.0",
"servicenow-rest-api": "^1.1.1"
},
"devDependencies": {
"@types/node": "^22.10.5",
"jest": "^29.7.0",
"typescript": "^5.7.2"
},
"engines": {
"node": ">=18.0.0"
}
}