-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 2.31 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
{
"name": "@entur/sdk",
"version": "4.2.1",
"license": "EUPL-1.2",
"main": "./lib/index.js",
"bugs": {
"url": "https://github.com/entur/sdk/issues"
},
"browser": {
"./lib/fetch.js": "./lib/fetch.browser.js"
},
"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": "docz dev",
"build:docs": "docz build",
"deploy:docs": "npm run build:docs && firebase deploy",
"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.1",
"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",
"@types/qs": "^6.9.6",
"@typescript-eslint/eslint-plugin": "^4.28.1",
"@typescript-eslint/parser": "^4.28.1",
"babel-eslint": "^10.1.0",
"docz": "^2.3.1",
"eslint": "^7.29.0",
"eslint-plugin-import": "^2.23.2",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-tsdoc": "^0.2.14",
"firebase-tools": "^9.14.0",
"gatsby-theme-docz": "^2.3.1",
"prettier": "2.3.2",
"react": "^16.14.0",
"react-dom": "^16.14.0",
"swagger-typescript-api": "^9.1.2",
"ts-node": "^10.0.0",
"typescript": "^4.3.5"
}
}