-
Notifications
You must be signed in to change notification settings - Fork 38
/
package.json
71 lines (71 loc) · 1.69 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
{
"name": "itoolkit",
"version": "1.0.2",
"description": "XMLSERVICE wrapper to access to all things IBM i",
"main": "lib/itoolkit.js",
"files": [
"lib/"
],
"directories": {
"lib": "lib",
"test": "test"
},
"scripts": {
"test": "./node_modules/mocha/bin/mocha.js --recursive test/unit",
"test-integration": "./node_modules/mocha/bin/mocha.js --timeout 5s test/functional/*.js",
"lint": "./node_modules/eslint/bin/eslint.js lib/ test/",
"lint-fix": "./node_modules/eslint/bin/eslint.js lib/ test/ --fix",
"release": "./node_modules/release-it/bin/release-it.js"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/IBM/nodejs-itoolkit.git"
},
"keywords": [
"ibmi",
"xmlservice",
"rpg",
"srvpgm"
],
"author": "IBM",
"license": "MIT",
"homepage": "https://github.com/IBM/nodejs-itoolkit#readme",
"contributors": [
{
"name": "Xu Meng",
"email": "[email protected]"
},
{
"name": "Tony Cairns"
},
{
"name": "Aaron Bartell",
"email": "[email protected]"
}
],
"dependencies": {
"depd": "^2.0.0",
"xml2js": "^0.5.0"
},
"devDependencies": {
"@release-it/conventional-changelog": "^8.0.1",
"chai": "^4.3.6",
"eslint": "^8.26.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-mocha": "^10.1.0",
"mocha": "^10.1.0",
"release-it": "^17.0.5",
"sinon": "^14.0.1"
},
"optionalDependencies": {
"fast-xml-parser": "^4.0.11",
"idb-connector": "^1.2.18",
"idb-pconnector": "^1.1.0",
"odbc": "^2.4.6",
"ssh2": "^1.11.0"
},
"engines": {
"node": ">= 8.0"
}
}