-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
52 lines (52 loc) · 1.25 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
{
"name": "servicemeow",
"version": "3.2.0",
"description": "A Javascript client for the ServiceNOW REST API.",
"main": "index.js",
"types": "./types/index.d.ts",
"scripts": {
"build:types": "tsc",
"test:mocha": "mocha",
"test": "nyc npm run test:mocha",
"lint": "eslint --fix ./*.js exceptions/*.js test/*.js",
"posttest": "npm run lint",
"prepublishOnly": "npm run build:types",
"report": "nyc report --reporter=lcov"
},
"author": "Jonathan Keslin <[email protected]>",
"repository": {
"type": "git",
"url": "[email protected]:decompil3d/servicemeow"
},
"license": "Apache-2.0",
"dependencies": {
"node-fetch": "^2.6.7"
},
"devDependencies": {
"@types/node": "^20.0.0",
"@types/sinon": "^10.0.8",
"assume": "^2.3.0",
"eslint": "^8.7.0",
"eslint-config-godaddy": "^7.0.0",
"eslint-plugin-json": "^3.1.0",
"eslint-plugin-mocha": "^10.0.3",
"mocha": "^10.0.0",
"nock": "^13.2.2",
"nyc": "^15.1.0",
"sinon": "^17.0.0",
"typescript": "^5.0.0"
},
"keywords": [
"serviceNOW",
"snow",
"service now",
"REST API",
"servicenow REST API",
"javascript",
"snow REST API client",
"client"
],
"engines": {
"node": ">=14.0.0"
}
}