-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.84 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.84 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
{
"name": "@admc.com/sn-developer",
"version": "3.10.0",
"description": "ServiceNow desktop developer utilities",
"main": "snUpload.js",
"bin": {
"snUpload": "snUpload.js",
"snVersions": "snVersions.js",
"suxList": "suxList.js",
"snMultiUpload": "snMultiUpload.js",
"snLintHtmlReport": "snLintHtmlReport.js"
},
"scripts": {
"lint": "eslint",
"upload": "snUpload.js",
"lintHtml": "eslint -f html -o local/eslint.html",
"snLint": "snLint -t sys_script_include resources/HttpCodeError.js && snLint -t sys_ws_operation resources/update-wsop.js && snLint -t sys_script_validator resources/script-validator-desktop.js && snLint -t sys_script_validator resources/scriptp-validator-desktop.js && snLint -t sys_script_validator resources/script-validator-mobilesp.js && snLint -t sys_script_validator resources/scriptp-validator-mobilesp.js",
"require+": "echo disabled node -p 'const { validate, is } = require(\"./index\"); validate(\"str\", \"string\");'",
"require-": "echo disabled node -p 'const { validate, is } = require(\"./index\"); validate(\"str\", \"int\");'",
"import+": "echo disabled node -r esm -p 'import { validate, is } from \"./index\"; validate(\"str\", \"string\");'",
"import-": "echo disabled node -r esm -p 'import { validate, is } from \"./index\"; validate(\"str\", \"int\");'"
},
"keywords": [
"ServiceNow",
"desktop",
"development"
],
"author": "Blaine Simpson <blaine.simpson@admc.com>",
"license": "Apache-2.0",
"homepage": "https://github.com/unsaved/sn-developer",
"repository": {
"type": "git",
"url": "https://github.com/unsaved/sn-developer.git"
},
"dependencies": {
"axios": "^1.6.5",
"checksum": "^1.0.0",
"entities": "^4.1.1",
"eslint": "^8.18.0",
"readline-sync": "^1.4.10",
"@admc.com/eslint-plugin-sn": "^3.18.5"
}
}