-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
60 lines (60 loc) · 1.74 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
50
51
52
53
54
55
56
57
58
59
60
{
"name": "oasa-telematics-api",
"version": "0.2.6",
"main": "build/index.js",
"types": "build/index.d.ts",
"description": "The Athens' bus telematics API, complete with types and helper methods",
"author": "Christos Panagiotakopoulos <[email protected]>",
"homepage": "https://chrispanag.github.io/oasa-telematics-api/",
"repository": "git://github.com/chrispanag/oasa-telematics-api.git",
"publishConfig": {
"access": "public"
},
"license": "MIT",
"keywords": [
"athens",
"greece",
"bus",
"oasa",
"telematics",
"oasa-telematics",
"buses",
"greek",
"public-transport"
],
"scripts": {
"build": "yarn tsc",
"test": "yarn ts-mocha tests/**/*.spec.ts",
"gen:docs": "yarn typedoc --out docs --includeVersion src/index.ts",
"prepublish": "yarn run build",
"prettier:base": "yarn prettier --config .prettierrc",
"prettier:check": "yarn run prettier:base --list-different 'src/**/*.ts'",
"prettier:write": "yarn run prettier:base --write 'src/**/*.ts'"
},
"devDependencies": {
"@types/chai": "^4.2.21",
"@types/mocha": "^9.0.0",
"chai": "^4.3.4",
"mocha": "^9.1.1",
"prettier": "^2.3.2",
"ts-mocha": "^8.0.0",
"tslint": "^6.1.3",
"typedoc": "^0.21.9",
"typescript": "^4.4.2"
},
"dependencies": {
"@types/lodash": "^4.14.172",
"@types/node-fetch": "^2.5.12",
"fuse.js": "^6.4.6",
"lodash": "^4.17.21",
"node-fetch": "^2.6.1"
},
"engines": {
"node": ">=8.9.0"
},
"files": [
"LICENSE",
"README.md",
"build/**/*"
]
}