-
Notifications
You must be signed in to change notification settings - Fork 18
/
package.json
56 lines (56 loc) · 1.26 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
{
"name": "zos-node-accessor",
"version": "2.0.12",
"description": "Accessing z/OS dataset and interacting with JES in NodeJS way",
"main": "./lib/zosAccessor.js",
"types": "./lib/zosAccessor.d.ts",
"scripts": {
"start": "npm run build:live",
"build": "tsc -p .",
"build:live": "tsc --watch",
"lint": "eslint \"src/**\"",
"test": "jest src/__unit__/*.test.ts",
"test:system": "jest src/__test__/*.test.ts --runInBand",
"test:all": "jest src/*/*.test.ts --runInBand"
},
"repository": "IBM/zos-node-accessor",
"keywords": [
"dataset",
"ftp",
"jcl",
"jes",
"uss",
"zos",
"z/OS"
],
"dependencies": {
"ftp4": "~0.3.13",
"q": "~1.4.1"
},
"devDependencies": {
"@types/jest": "^29.5.12",
"@types/node": "^20.14.9",
"@types/q": "^1.5.5",
"jest": "^29.7.0",
"ts-jest": "^29.1.5",
"tslint": "^6.1.0",
"typescript": "^4.9.5"
},
"files": [
"./LICENSE",
"./README.md",
"lib/interfaces/*.d.ts",
"lib/interfaces/*.js",
"lib/*.d.ts",
"lib/*.js"
],
"engines": {
"node": ">= 8"
},
"author": "Qi Liang <[email protected]>",
"contributors": [
"Na Tian <[email protected]>",
"Chang Xin Miao <[email protected]>"
],
"license": "EPL-1.0"
}