This repository has been archived by the owner on Oct 31, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
72 lines (72 loc) · 2.5 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
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "@entur/sdk",
"version": "6.0.0",
"license": "EUPL-1.2",
"main": "./lib/index.js",
"bugs": {
"url": "https://github.com/entur/sdk/issues"
},
"browser": {
"./lib/fetch.js": "./lib/fetch.browser.js"
},
"repository": {
"type": "git",
"url": "https://github.com/entur/sdk.git"
},
"typings": "./lib/index.d.ts",
"files": [
"lib",
"index.d.ts"
],
"scripts": {
"lint": "eslint src/ scripts/ --ext=js,ts && prettier . --check",
"format": "prettier . --write",
"test": "npm run lint && ts-node scripts/validate-queries.js && tsc --noEmit --emitDeclarationOnly false -p .",
"prebuild": "npm test && rm -rf lib",
"declaration": "tsc",
"build": "babel --extensions .ts src --out-dir lib && npm run declaration",
"prepublishOnly": "npm run build",
"docs": "npm run build:docs -- --watch",
"build:docs": "typedoc --out docs src/index.ts --tsconfig ./tsconfig.typedoc.json --readme ./DOC_INDEX.md",
"deploy:docs": "npm run build:docs && firebase deploy --only hosting",
"generate-types": "./scripts/generate-types.sh",
"fetch-schemas": "ts-node scripts/fetch-schemas.ts"
},
"dependencies": {
"@babel/polyfill": "^7.12.1",
"@turf/bbox": "^6.3.0",
"@turf/destination": "^6.3.0",
"@turf/helpers": "^6.3.0",
"@types/geojson": "^7946.0.7",
"@types/node-fetch": "^2.5.10",
"clean-deep": "^3.4.0",
"node-fetch": "^2.6.7",
"promise-throttle": "^1.1.2",
"qs": "^6.10.1",
"regenerator-runtime": "^0.13.8"
},
"devDependencies": {
"@babel/cli": "^7.14.3",
"@babel/core": "^7.14.3",
"@babel/node": "^7.14.7",
"@babel/preset-env": "^7.14.7",
"@babel/preset-typescript": "^7.13.0",
"@babel/register": "^7.13.16",
"@graphql-codegen/cli": "^2.3.1",
"@graphql-codegen/typescript": "^2.4.2",
"@types/qs": "^6.9.6",
"@typescript-eslint/eslint-plugin": "^5.9.1",
"@typescript-eslint/parser": "^5.9.1",
"babel-eslint": "^10.1.0",
"eslint": "^8.6.0",
"eslint-plugin-import": "^2.23.2",
"eslint-plugin-tsdoc": "^0.2.14",
"firebase-tools": "^10.2.1",
"graphql": "^16.3.0",
"prettier": "^2.6.0",
"swagger-typescript-api": "^9.1.2",
"ts-node": "^10.0.0",
"typedoc": "^0.22.3",
"typescript": "^4.4.3"
}
}