-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
73 lines (73 loc) · 1.53 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
{
"name": "@zosconnect/zosconnect-node",
"version": "4.1.2",
"description": "Node module for managing z/OS Connect EE artefacts",
"main": "lib/ZosConnect.js",
"types": "lib/ZosConnect.d.ts",
"files": [
"lib"
],
"publishConfig": {
"access": "public"
},
"dependencies": {
"@types/extend": "^3.0.1",
"@types/got": "^9.6.11",
"extend": "^3.0.2",
"got": "^11.1.3",
"snyk": "^1.321.0"
},
"devDependencies": {
"@types/chai": "^4.2.11",
"@types/chai-as-promised": "^7.1.2",
"@types/mocha": "^5.2.7",
"@types/nock": "^9.3.1",
"@types/node": "^14.0.1",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"codecov": "^3.5.0",
"doctoc": "^1.4.0",
"mocha": "^7.1.2",
"nock": "^11.0.0",
"nyc": "^14.1.1",
"source-map-support": "^0.5.19",
"ts-node": "^7.0.1",
"tslint": "^5.20.1",
"typescript": "^3.9.2"
},
"scripts": {
"build": "tsc",
"lint": "tslint src/**/*.ts",
"test": "nyc mocha -r ts-node/register test/**/*.ts",
"posttest": "npm run lint",
"snyk-protect": "snyk protect",
"prepare": "npm run snyk-protect"
},
"nyc": {
"extension": [
".ts",
".tsx"
],
"exclude": [
"**/*.d.ts",
"coverage",
"lib"
],
"reporter": [
"text",
"html"
],
"all": true
},
"repository": {
"type": "git",
"url": "https://github.com/zosconnect/zosconnect-node.git"
},
"keywords": [
"z/OS",
"z/OS Connect"
],
"author": "",
"license": "Apache-2.0",
"snyk": true
}