-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
114 lines (114 loc) · 3.83 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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
{
"name": "provendb-sqlserver",
"description": "ProvenDB Connector for SQL Server",
"version": "0.1.2",
"author": "Guy Harrison",
"bin": {
"provendb-sqlserver": "./run.js"
},
"bugs": "https://github.com/SouthbankSoftware/provendb-sqlserver/issues",
"dependencies": {
"@oclif/command": "^1",
"@oclif/config": "^1",
"@oclif/plugin-autocomplete": "^0.2.0",
"@oclif/plugin-help": "^3",
"@oclif/plugin-not-found": "^1.2.4",
"adm-zip": "^0.4.16",
"axios": "^0.21.1",
"chainpoint-binary": "^4.0.1",
"chainpoint-client": "^0.2.1",
"chainpoint-parse": "^3.1.1",
"chainpoint-validate": "*",
"js-yaml": "^3.14.0",
"json-stringify-safe": "^5.0.1",
"makensis": "^0.21.3",
"minimist": "^0.2.1",
"mssql": "^7.2.1",
"password-prompt": "^1.1.2",
"path": "^0.12.7",
"pkg": "^4.4.9",
"provendb-sdk-node": "0.1.0-alpha.2",
"simple-node-logger": "^18.12.24",
"sprintf-js": "^1.1.2",
"tmp": "^0.2.1",
"yarn": "^1.22.17"
},
"devDependencies": {
"@babel/cli": "^7.12.1",
"@babel/core": "^7.12.3",
"@babel/preset-env": "^7.12.1",
"@oclif/dev-cli": "^1",
"@oclif/test": "^1",
"babel-eslint": "^10.1.0",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-root-import": "^5.0.0",
"babel-plugin-syntax-async-functions": "^6.1.4",
"babel-plugin-transform-async-to-generator": "^6.16.0",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-plugin-transform-object-rest-spread": "^6.23.0",
"babel-plugin-transform-regenerator": "^6.1.4",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.4.0",
"babel-preset-stage-0": "^6.16.0",
"chai": "^4",
"eslint": "^7.4.0",
"eslint-config-airbnb": "^18.2.0",
"eslint-config-oclif": "^3.1",
"eslint-config-prettier": "^6.15.0",
"eslint-loader": "^4.0.2",
"eslint-plugin-babel": "^5.3.1",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "^7.20.3",
"eslint-plugin-react-hooks": "^4.0.8",
"globby": "^10",
"jest": "^26.6.3",
"mocha": "^5",
"nyc": "^14",
"prettier": "^2.0.5",
"prettier-eslint": "^11.0.0",
"prettier-eslint-cli": "^5.0.0",
"regenerator-runtime": "^0.13.7"
},
"engines": {
"node": ">=12.0.0"
},
"files": [
"/bin",
"/npm-shrinkwrap.json",
"/oclif.manifest.json",
"/src"
],
"homepage": "https://github.com/SouthbankSoftware/provendb-sqlserver",
"keywords": [
"oclif"
],
"license": "GPL",
"main": "src/index.js",
"oclif": {
"macos": {
"identifier": "com.provendb.sqlserver"
},
"commands": "./src/commands",
"bin": "provendb-sqlserver",
"plugins": [
"@oclif/plugin-help",
"@oclif/plugin-not-found",
"@oclif/plugin-autocomplete"
]
},
"repository": "https://github.com/SouthbankSoftware/provendb-sqlserver",
"scripts": {
"postpack": "rm -f oclif.manifest.json",
"pack": "oclif-dev pack",
"build": "oclif-dev pack:win && oclif-dev pack:macos && oclif-dev pack:deb",
"build:win": "oclif-dev pack:win",
"build:mac": "oclif-dev pack:macos",
"build:deb": "oclif-dev pack:deb",
"prepack": "oclif-dev manifest && oclif-dev readme",
"testo": "nyc mocha --forbid-only \"test/**/*.test.js\"",
"test": "jest --runInBand --forceExit --detectOpenHandles",
"version": "oclif-dev readme && git add README.md"
}
}