This repository has been archived by the owner on May 9, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
87 lines (87 loc) · 2.23 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"name": "@athiththan11/hydrogen-cli",
"description": "an interactive cli tool for wso2 servers",
"version": "0.4.0-beta",
"author": "Athiththan @athiththan11",
"bin": {
"hydrogen": "./bin/run"
},
"bugs": "https://github.com/athiththan11/hydrogen/issues",
"publishConfig": {
"registry": "https://npm.pkg.github.com/"
},
"dependencies": {
"@oclif/command": "1.5.18",
"@oclif/config": "1.13.2",
"@oclif/plugin-autocomplete": "0.1.3",
"@oclif/plugin-help": "2.2.0",
"chance": "1.0.18",
"cli-table": "0.3.1",
"cli-ux": "5.3.1",
"dockerode": "2.5.8",
"execsql": "0.0.3",
"fs-extra": "8.1.0",
"libxmljs": "0.19.5",
"listr": "0.14.3",
"mssql": "5.1.0",
"mysql": "2.17.1",
"pg": "7.12.1",
"pgtools": "0.3.0",
"prettify-xml": "1.2.0",
"shelljs": "0.8.3",
"winston": "3.2.1"
},
"devDependencies": {
"@oclif/dev-cli": "1.22.2",
"@oclif/test": "1.2.5",
"chai": "4.2.0",
"eslint": "5.16.0",
"eslint-config-oclif": "3.1.0",
"fsify": "3.0.0",
"globby": "10.0.1",
"mocha": "5.2.0",
"nyc": "13.3.0",
"rimraf": "2.6.3"
},
"engineStrict": true,
"engines": {
"node": "8.9.0"
},
"config": {
"engine-strict": true
},
"os": [
"darwin",
"linux",
"win32"
],
"files": [
"/bin",
"/npm-shrinkwrap.json",
"/oclif.manifest.json",
"/src"
],
"homepage": "https://github.com/athiththan11/hydrogen",
"keywords": [
"hydrogen"
],
"license": "MIT",
"main": "src/index.js",
"oclif": {
"commands": "./src/commands",
"bin": "hydrogen",
"plugins": [
"@oclif/plugin-help",
"@oclif/plugin-autocomplete"
]
},
"repository": "athiththan11/hydrogen",
"scripts": {
"postpack": "rimraf oclif.manifest.json",
"posttest": "eslint --ignore-path .gitignore .",
"prepack": "oclif-dev manifest && oclif-dev readme",
"test:windows": "set NODE_ENV=mocha&& set MOCHA_MULTIPLE_GATEWAY=multiple-gateway&& set MOCHA_DISTRIBUTED=distributed&& set MOCHA_ISKM=is-km&& set MOCHA_ESBCLUSTERED=clustered&& nyc mocha --forbid-only \"test/**/*.test.js\"",
"test": "NODE_ENV=mocha MOCHA_MULTIPLE_GATEWAY='/multiple-gateway' MOCHA_DISTRIBUTED='/distributed' MOCHA_ISKM='/is-km' MOCHA_ESBCLUSTERED='/clustered' nyc mocha --forbid-only \"test/**/*.test.js\"",
"version": "oclif-dev readme && git add README.md"
}
}