-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
38 lines (38 loc) · 817 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": "eco-counter-client",
"description": "Fetch data about bicycle counters from the Eco Counter API.",
"version": "1.0.0",
"main": "index.js",
"files": [
"index.js",
"lib"
],
"keywords": [
"bicycle",
"bike",
"counter",
"api"
],
"author": "Jannis R <[email protected]>",
"homepage": "https://github.com/derhuerst/eco-counter-client",
"repository": "derhuerst/eco-counter-client",
"bugs": "https://github.com/derhuerst/eco-counter-client/issues",
"license": "ISC",
"engines": {
"node": ">=10"
},
"dependencies": {
"fetch-ponyfill": "^6.0.0",
"floordate": "^3.0.0",
"pinkie-promise": "^2.0.1",
"query-string": "^6.0.0"
},
"devDependencies": {
"tap-min": "^2.0.0",
"tape": "^5.0.0"
},
"scripts": {
"test": "node test.js | tap-min",
"prepublishOnly": "npm test"
}
}