-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
68 lines (68 loc) · 1.65 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
{
"name": "strava",
"version": "2.3.0",
"description": "This library is a fully typed JavaScript wrapper of the Strava JSON API",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"module": "dist/strava.esm.js",
"repository": {
"type": "git",
"url": "git+https://github.com/rfoel/strava.git"
},
"keywords": [
"strava",
"api",
"client",
"node"
],
"author": "Rafael Franco <rafaelfr@outlook.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/rfoel/strava/issues"
},
"homepage": "https://github.com/rfoel/strava#readme",
"scripts": {
"start": "tsdx watch",
"build": "tsdx build",
"test": "tsdx test",
"lint": "tsdx lint",
"prepare": "tsdx build"
},
"dependencies": {
"form-data": "^4.0.0",
"node-fetch": "2.6.6"
},
"devDependencies": {
"@semantic-release/changelog": "^6.0.1",
"@semantic-release/commit-analyzer": "^9.0.1",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^8.0.2",
"@semantic-release/npm": "^8.0.3",
"@semantic-release/release-notes-generator": "^10.0.2",
"@types/node-fetch": "^2.5.12",
"nock": "^13.1.4",
"semantic-release": "^18.0.0",
"tsdx": "^0.14.1",
"tslib": "^2.3.1",
"typescript": "^4.4.4"
},
"resolutions": {
"**/@typescript-eslint/eslint-plugin": "^5.3.1",
"**/@typescript-eslint/parser": "^5.3.1",
"**/jest": "^27.3.1",
"**/ts-jest": "^27.0.7",
"**/typescript": "^4.4.4"
},
"files": [
"dist"
],
"engines": {
"node": ">=10"
},
"prettier": {
"printWidth": 80,
"semi": false,
"singleQuote": true,
"trailingComma": "all"
}
}