-
Notifications
You must be signed in to change notification settings - Fork 38
/
Copy pathpackage.json
65 lines (65 loc) · 1.46 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
{
"name": "itoolkit",
"version": "1.0.0",
"description": "XMLSERVICE wrapper to access to all things IBM i",
"main": "lib/itoolkit.js",
"directories": {
"lib": "lib",
"test": "test"
},
"scripts": {
"test": "./node_modules/mocha/bin/mocha --recursive test/unit",
"test-integration": "./node_modules/mocha/bin/mocha test/functional/*.js",
"lint": "./node_modules/eslint/bin/eslint.js lib/ test/",
"release": "standard-version"
},
"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.4.23"
},
"devDependencies": {
"chai": "^4.2.0",
"eslint": "^6.2.0",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-mocha": "^7.0.1",
"mocha": "^6.2.3",
"sinon": "^7.4.1",
"standard-version": "^8.0.1"
},
"optionalDependencies": {
"idb-connector": "^1.2.2",
"idb-pconnector": "^1.0.7",
"ssh2": "^0.8.2",
"odbc": "^2.1.3"
},
"engines": {
"node": ">= 8.0"
}
}