forked from jwilsson/glesys-api-node
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.02 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
{
"name": "glesys-api",
"version": "5.1.0",
"description": "Node.js wrapper for the GleSYS API.",
"main": "lib/glesys.js",
"author": "Jonathan Wilsson <[email protected]>",
"contributors": [
"Oskar Risberg <[email protected]>"
],
"engines": {
"node": ">=10.13.0"
},
"keywords": [
"glesys"
],
"files": [
"lib"
],
"repository": {
"type": "git",
"url": "https://github.com/jwilsson/glesys-api-node"
},
"dependencies": {
"got": "^10.0.1"
},
"devDependencies": {
"coveralls": "^3.0.0",
"eslint": "^6.0.0",
"eslint-config-jwilsson": "^4.0.0",
"mocha": "^7.0.1",
"nyc": "^15.0.0",
"sinon": "^8.1.1"
},
"scripts": {
"cover": "nyc report --reporter=text-lcov | coveralls",
"pretest": "eslint lib test",
"test": "nyc mocha"
},
"eslintConfig": {
"extends": "eslint-config-jwilsson/node",
"env": {
"mocha": true
}
},
"license": "MIT",
"bugs": {
"url": "https://github.com/jwilsson/glesys-api-node/issues"
}
}