-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
60 lines (60 loc) · 1.72 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": "zwift-data",
"version": "1.41.0",
"description": "Data about Zwift worlds, routes and segments",
"main": "./lib/cjs/index.js",
"module": "./lib/esm/index.js",
"types": "./lib/types/index.d.ts",
"files": [
"lib"
],
"keywords": [
"zwift",
"data"
],
"author": {
"name": "Andi Pätzold",
"email": "[email protected]",
"url": "http://github.com/andipaetzold"
},
"repository": {
"type": "git",
"url": "git+https://github.com/andipaetzold/zwift-data.git"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/andipaetzold/zwift-data/issues"
},
"homepage": "https://github.com/andipaetzold/zwift-data#readme",
"devDependencies": {
"@octokit/rest": "21.0.2",
"@semantic-release/changelog": "6.0.3",
"@semantic-release/git": "10.0.1",
"@tsconfig/recommended": "1.0.8",
"@turf/turf": "7.1.0",
"@types/jest": "29.5.14",
"@types/lodash": "4.17.13",
"@types/node": "22.10.1",
"jest": "29.7.0",
"lodash": "4.17.21",
"node-fetch": "3.3.2",
"prettier": "3.4.1",
"rimraf": "6.0.1",
"semantic-release": "24.2.0",
"simple-git": "3.27.0",
"ts-jest": "29.2.5",
"typedoc": "0.27.2",
"typescript": "5.7.2"
},
"scripts": {
"prepublishOnly": "npm run build",
"build": "rimraf lib && npm run build:cjs && npm run build:esm",
"build:cjs": "rimraf lib/cjs && tsc --module commonjs --outDir lib/cjs",
"build:esm": "rimraf lib/esm && tsc --module ES2015 --outDir lib/esm",
"build-docs": "rimraf docs && typedoc src/index.ts",
"test": "jest",
"semantic-release": "semantic-release",
"update-data": "node ./scripts/update-data.mjs",
"prepare-pr": "node ./scripts/prepare-pr.mjs"
}
}