forked from DevoInc/nodejs-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1013 Bytes
/
package.json
File metadata and controls
47 lines (47 loc) · 1013 Bytes
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
{
"name": "@devo/nodejs-sdk",
"version": "2.3.2",
"description": "Devo SDK for Node.js",
"author": "Devo Dev Team",
"eslintConfig": {
"env": {
"browser": true,
"node": true
}
},
"main": "index.js",
"scripts": {
"test": "mocha --reporter list --timeout 10000 test/*.js",
"posttest": "npm run lint",
"lint": "eslint '**/*.js'",
"manualtest": "mocha --reporter list --timeout 10000 test/manual/*.js"
},
"bin": {
"devo-query": "bin/cli.js",
"devo-send": "bin/sender.js"
},
"repository": {
"type": "git",
"url": "git@github.com:devoinc/nodejs-sdk.git"
},
"keywords": [
"Devo",
"SDK",
"API",
"Query",
"LinQ"
],
"dependencies": {
"basic-request": "1.2.2",
"command-line-args": "4.0.2",
"command-line-usage": "4.0.0",
"@devo/js-helper": "^1.3.0",
"whatwg-fetch": "2.0.3"
},
"devDependencies": {
"eslint": "^4.18.1",
"mocha": "^3.5.0",
"should": "^12.0.0"
},
"license": "MIT"
}