-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.89 KB
/
Copy pathpackage.json
File metadata and controls
60 lines (60 loc) · 1.89 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
52
53
54
55
56
57
58
59
60
{
"name": "gbfs-system",
"version": "1.1.2",
"description": "A Node.js package that enables real-time data retrieval from GBFS (General Bikeshare Feed Specification) using the auto-discovery URLs provided by MobilityData. It allows developers to easily access and utilize live bikeshare system information, station information, station status, etc, and other valuable data for building innovative applications and services.",
"type": "module",
"main": "dist/index.js",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"default": "./dist/index.js"
}
},
"scripts": {
"clean": "rimraf dist/",
"include": "cp src/types.d.ts dist/",
"build": "npm run clean && tsc && npm run include",
"test": "jest",
"prepublishOnly": "npm test && npm run build",
"debug": "npm run build && node --inspect-brk=9229 ./dist/index.js",
"test-debug": "node --inspect-brk ./node_modules/.bin/jest --runInBand",
"semantic-release": "semantic-release"
},
"repository": {
"type": "git",
"url": "https://github.com/becaaye/gbfs-system.git"
},
"keywords": [
"gbfs",
"feeds",
"systems",
"bikeshare",
"realtime",
"stations"
],
"author": "Becaye Badiane",
"license": "ISC",
"bugs": {
"url": "https://github.com/becaaye/gbfs-system/issues"
},
"homepage": "https://github.com/becaaye/gbfs-system#readme",
"dependencies": {
"axios": "^1.5.1",
"csv-parser": "^3.0.0"
},
"devDependencies": {
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/commit-analyzer": "^11.1.0",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^9.2.3",
"@types/jest": "^29.5.7",
"jest": "^29.7.0",
"rimraf": "^5.0.5",
"semantic-release": "^22.0.8",
"ts-jest": "^29.1.1",
"typescript": "^5.2.2"
}
}