-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
37 lines (37 loc) · 1.03 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
{
"name": "gbfs-client",
"version": "0.8.0",
"description": "General Bikeshare Feed Specification (GBFS) client, compatible with Citibike NYC API",
"main": "./lib/gbfs.js",
"types": "./lib/gbfs.d.ts",
"scripts": {
"prepublish": "npm run build",
"build": "tsc",
"lint": "tslint --fix --project tsconfig.json --config tslint.json",
"tests": "nyc --reporter=text mocha",
"test": "npm run build && npm run lint && npm run tests"
},
"repository": {
"type": "git",
"url": "git+https://[email protected]/mnkhouri/node-gbfs-client.git"
},
"keywords": [
"Citibike",
"GBFS",
"General Bikeshare Feed Specification",
"Citi Bike"
],
"author": "Marc Khouri <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/mnkhouri/node-gbfs-client/issues"
},
"homepage": "https://github.com/mnkhouri/node-gbfs-client#readme",
"devDependencies": {
"@types/node": "^8.0.17",
"mocha": "^3.4.2",
"nyc": "^11.0.3",
"tslint": "^5.6.0",
"typescript": "^2.4.2"
}
}