-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.34 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
{
"name": "race-lib",
"version": "3.0.1",
"description": "retrieve event data from britishcycling.org",
"keywords": [
"britishcycling"
],
"repository": "https://github.com/mrloop/race-lib",
"license": "MIT",
"author": "mrloop <[email protected]>",
"type": "module",
"main": "src/main.js",
"scripts": {
"lint": "yarn eslint .",
"release": "yarn release-it",
"test": "yarn qunit tests/test.js"
},
"dependencies": {
"abort-controller": "^3.0.0",
"cross-fetch": "3.2.0",
"event-target-shim": "^6.0.0",
"serial-fetch": "1.0.0",
"uri-js": "^4.2"
},
"devDependencies": {
"cheerio": "1.0.0-rc.12",
"eslint": "8.57.1",
"eslint-config-standard": "17.1.0",
"eslint-plugin-import": "2.31.0",
"eslint-plugin-n": "15.7.0",
"eslint-plugin-promise": "6.6.0",
"qunit": "2.23.1",
"race-fix": "0.0.2",
"release-it": "15.11.0",
"release-it-lerna-changelog": "5.0.0"
},
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"release-it": {
"plugins": {
"release-it-lerna-changelog": {
"infile": "CHANGELOG.md",
"launchEditor": true
}
},
"git": {
"tagName": "v${version}"
},
"github": {
"release": true,
"tokenRef": "GITHUB_AUTH"
}
},
"volta": {
"node": "18.20.5",
"yarn": "1.22.22"
}
}