-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
77 lines (77 loc) · 1.7 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "@hrax/now-eslint",
"version": "1.0.0",
"description": "NodeJS CLI to ESLint update set changes on Service Now instances",
"keywords": [
"service now",
"servicenow",
"service",
"now",
"snow",
"eslint",
"lint",
"cli",
"report",
"reporting",
"QA"
],
"homepage": "https://github.com/hrax/now-eslint",
"bugs": "https://github.com/hrax/now-eslint/issues",
"license": "MIT",
"author": {
"name": "Gregor Magdolen",
"url": "https://hrax.dev"
},
"main": "index.js",
"exports": {
".": "./index.js",
"./package.json": "./package.json",
"./generator": "./modules/generator/index.js",
"./generator/index": "./modules/generator/index.js",
"./generator/index.js": "./modules/generator/index.js"
},
"bin": {
"now-eslint": "./modules/cli/now-eslint.js"
},
"files": [
"modules",
"resources",
"index.js",
"package.json",
"README.md",
"LICENSE.txt"
],
"repository": {
"type": "git",
"url": "git://github.com/hrax/now-eslint.git"
},
"scripts": {
"test": "jasmine"
},
"dependencies": {
"@xmldom/xmldom": "^0.8.6",
"chart.js": "^3.5.1",
"chartjs-node-canvas": "^4.1.6",
"commander": "^9.4.1",
"docx": "^7.7.0",
"dotenv": "^16.0.3",
"https-proxy-agent": "^5.0.1",
"pdfmake": "^0.2.6",
"prompt": "^1.3.0",
"xpath": "0.0.32"
},
"devDependencies": {
"@babel/core": "^7.20.2",
"@babel/eslint-parser": "^7.19.1",
"eslint": "^7.32.0 || ^8.28.0",
"eslint-plugin-jasmine": "^4.1.3",
"jasmine": "^4.5.0"
},
"peerDependencies": {
"eslint": "^7.32.0 || ^8.28.0"
},
"type": "commonjs",
"engines": {
"node": "^12.22 || >14"
}
}