-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 2.06 KB
/
package.json
File metadata and controls
78 lines (78 loc) · 2.06 KB
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
{
"name": "tcx2webvtt",
"version": "1.0.0",
"description": "Convert a TCX workout file to WebVTT with JSON metadata",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
}
},
"files": [
"dist",
"src"
],
"bin": {
"tcx2webvtt": "dist/bin/tcx2webvtt.js"
},
"type": "module",
"scripts": {
"prebuild": "npm run clean",
"build": "tsc --incremental false --declaration --declarationMap --outDir dist",
"postbuild": "chmod +x dist/bin/tcx2webvtt.js",
"clean": "del-cli *.tsbuildinfo coverage dist",
"lint": "eslint *.ts src",
"lint:fix": "npm run lint -- --fix",
"prepack": "npm run build",
"prepare": "is-ci || husky",
"test": "vitest run",
"tscc": "tsc --noEmit",
"verify": "concurrently -c cyan,magenta,blue npm:lint npm:test npm:tscc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/limulus/tcx2webvtt.git"
},
"author": {
"name": "Eric McCarthy",
"email": "eric@limulus.net",
"url": "https://limulus.net/"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/limulus/tcx2webvtt/issues"
},
"homepage": "https://github.com/limulus/tcx2webvtt#readme",
"dependencies": {
"@sindresorhus/is": "^7.0.2",
"es-main": "^1.3.0",
"fast-xml-parser": "^5.2.3",
"prettier": "^3.5.3",
"tslib": "^2.8.1"
},
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"devDependencies": {
"@commitlint/cli": "^19.8.1",
"@commitlint/config-conventional": "^19.8.1",
"@limulus/eslint-config": "^6.0.0",
"@prettier/plugin-xml": "^3.4.1",
"@types/node": "^22.15.21",
"@vitest/browser": "^3.1.4",
"@vitest/coverage-v8": "^3.1.4",
"concurrently": "^9.1.2",
"del-cli": "^6.0.0",
"eslint": "^9.28.0",
"hls.js": "^1.6.5",
"husky": "^9.1.7",
"is-ci": "^4.1.0",
"mkdirp": "^3.0.1",
"playwright": "^1.52.0",
"semantic-release": "^24.2.5",
"typescript": "^5.8.3",
"vitest": "^3.1.4"
}
}