-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
39 lines (39 loc) · 921 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
39
{
"name": "gtfs-types",
"version": "4.0.0",
"author": "Kyle Hensel",
"description": "🚂 Typescript definitions for the GTFS Standard",
"license": "MIT",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"lint": "eslint --ignore-path .gitignore --ext .ts .",
"build": "tsc && rm -rf dist/test",
"trypublish": "npm publish --provenance || true"
},
"keywords": [
"gtfs",
"types",
"typescript"
],
"files": [
"dist"
],
"homepage": "https://github.com/k-yle/gtfs-types",
"repository": "https://github.com/k-yle/gtfs-types",
"bugs": {
"url": "https://github.com/k-yle/gtfs-types/issues"
},
"eslintConfig": {
"extends": "kyle",
"rules": {
"@typescript-eslint/no-unused-vars": 0,
"camelcase": 0
}
},
"devDependencies": {
"eslint": "^8.47.0",
"eslint-config-kyle": "^14.3.5",
"typescript": "^5.1.6"
}
}