-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
42 lines (42 loc) · 1.07 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
{
"name": "dremio-sdk",
"version": "0.0.14",
"description": "Dremio SDK for JavaScript",
"main": "./lib/dremio.js",
"scripts": {
"test": "standard --fix && mocha $(find test -name '*.js')"
},
"keywords": [
"dremio",
"api",
"sdk"
],
"author": "Paulo Henrique Bruce <[email protected]> (https://datasprints.com.br)",
"contributors": [
"Allan Sene <[email protected]>",
"Hugo Martins <[email protected]>",
"Raissa Bergamini <[email protected]>",
"Caio Henrique <[email protected]> (https://datasprints.com.br)",
"Marco Antônio Rodrigues <[email protected]> (https://datasprints.com.br)"
],
"license": "Apache-2.0",
"preferGlobal": true,
"dependencies": {
"request": "^2.88.0",
"request-promise": "^4.2.4",
"validator": "^11.1.0",
"verror": "^1.10.0"
},
"directories": {
"lib": "lib",
"test": "test"
},
"devDependencies": {
"chai": "^4.2.0",
"mocha": "^6.2.0",
"nock": "^11.3.1",
"rewire": "^4.0.1",
"sinon": "^7.4.2",
"standard": "^14.1.0"
}
}