forked from rfoel/strava
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
88 lines (88 loc) · 2.05 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
{
"name": "strava",
"version": "2.1.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 <[email protected]>",
"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",
"size": "size-limit",
"analyze": "size-limit --why"
},
"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",
"@size-limit/preset-small-lib": "^6.0.4",
"@types/node-fetch": "^2.5.12",
"husky": "^7.0.4",
"nock": "^13.1.4",
"semantic-release": "^18.0.0",
"size-limit": "^6.0.4",
"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"
},
"husky": {
"hooks": {
"pre-commit": "tsdx lint"
}
},
"size-limit": [
{
"path": "dist/strava.cjs.production.min.js",
"limit": "10 KB"
},
{
"path": "dist/strava.esm.js",
"limit": "10 KB"
}
]
}