-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.03 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.03 KB
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
{
"name": "@devoinc/nodejs-sdk",
"version": "3.1.0",
"description": "Devo SDK for Node.js",
"author": "Devo Dev Team",
"eslintConfig": {
"env": {
"browser": true,
"node": true
}
},
"main": "index.js",
"scripts": {
"test": "mocha test/*.js --exit",
"posttest": "npm run lint",
"lint": "eslint '**/*.js'",
"manualtest": "mocha --reporter list --timeout 50000 test/manual/*.js --exit"
},
"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": {
"@devoinc/js-helper": "^2.0.0",
"basic-request": "^3.0.4",
"command-line-args": "4.0.2",
"command-line-usage": "4.0.0",
"whatwg-fetch": "2.0.3"
},
"devDependencies": {
"eslint": "^8.11.0",
"mocha": "^9.2.2",
"should": "^13.2.3"
},
"license": "MIT",
"engines": {
"node": ">=14",
"npm": ">=7"
}
}