-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
46 lines (46 loc) · 1.27 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
{
"name": "strava",
"version": "1.2.4",
"description": "Strava v3 API application outputs kml files for Google Earth",
"main": "index.js",
"scripts": {
"start": "node bin/strava.js",
"clean": "rm -rf dist",
"build": "npm run clean & tsc",
"watch": "tsc -w -p",
"test": "jest --runInBand",
"coverage": "jest --coverage --runInBand --verbose",
"prepublishOnly": "tsc",
"prepare": "npm run build",
"format": "prettier --write 'src/**/*.ts'"
},
"repository": "",
"author": "Jim Pravetz",
"license": "BSD",
"dependencies": {
"assert": "~2.0.0",
"async": "^3.2.4",
"commander": "^9.4.1",
"dateutil": "git+ssh://[email protected]:jpravetz/dateutil.git#v1.0.5",
"epdoc-util": "github:jpravetz/epdoc-util",
"koa": "^2.10.0",
"koa-router": "^12.0.0",
"open": "^8.4.0",
"pdfkit": "~0.13.0",
"superagent": "^8.0.6",
"xmlbuilder": "^15.1.1"
},
"devDependencies": {
"@types/jest": "^29.2.4",
"@types/koa": "^2.0.51",
"@types/koa-router": "^7.0.42",
"@types/node": "^18.11.17",
"@types/superagent": "^4.1.3",
"jest": "^29.3.1",
"prettier": "^2.8.1",
"ts-jest": "^29.0.3",
"tslint-config-prettier": "^1.18.0",
"tslint-plugin-prettier": "^2.0.1",
"typescript": "^4.9"
}
}