-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
38 lines (38 loc) · 962 Bytes
/
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
{
"name": "osm-node",
"version": "0.0.4",
"description": "Node package for interacting with OSM (Online Scout Manager) API",
"main": "./src",
"scripts": {
"lint": "eslint src/",
"test": "mocha --reporter spec",
"coverage": "nyc --check-coverage --lines 90 --per-file --reporter=text mocha"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Danomanic/osm-node.git"
},
"keywords": [
"node",
"osm"
],
"author": "Daniel J. Pomfret",
"license": "ISC",
"bugs": {
"url": "https://github.com/Danomanic/osm-node/issues"
},
"homepage": "https://github.com/Danomanic/osm-node#readme",
"devDependencies": {
"axios-mock-adapter": "^1.17.0",
"chai": "^4.2.0",
"eslint": "^5.16.0",
"eslint-config-airbnb-base": "^13.2.0",
"eslint-plugin-import": "^2.18.2",
"mocha": "^6.2.2",
"nyc": "^14.1.1"
},
"dependencies": {
"axios": "^0.21.1",
"https": "^1.0.0"
}
}