-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
46 lines (46 loc) · 1.24 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
{
"name": "create-servicenow-change-request",
"version": "1.0.0",
"description": "Automate the creation of a change request in ServiceNow",
"keywords": [
"change",
"change-request",
"servicenow"
],
"author": "William Belle <[email protected]>",
"license": "Apache-2.0",
"repository": "https://github.com/innovativeinnovation/create-servicenow-change-request.git",
"engines": {
"node": ">=18"
},
"type": "module",
"bin": {
"create-servicenow-change-request": "src/bin/create-servicenow-change-request.js",
"csncr": "src/bin/csncr.js"
},
"scripts": {
"test": "eslint . && mocha",
"coverage": "c8 mocha",
"coveralls": "npm run coverage && c8 report --reporter=lcov"
},
"devDependencies": {
"c8": "^10.1.3",
"chai": "^5.1.2",
"eslint": "^7.1.0",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"mocha": "^7.2.0",
"mocha-lcov-reporter": "^1.3.0"
},
"dependencies": {
"inquirer-confirm": "^2.0.7",
"js-yaml": "^4.1.0",
"moment": "^2.26.0",
"node-alias": "^1.0.4",
"open": "^10.1.0",
"yargs": "^17.7.2"
}
}