-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1.04 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
{
"name": "garmin-tcx-parser",
"version": "1.0.7",
"description": "Convert Garmin's Tcx files into usable data for your projects.",
"main": "./src/index.js",
"types": "./index.js.d.ts",
"scripts": {
"start": "npm start",
"test": "echo \"Error: no test specified\" && exit 1",
"build": "npx rollup -c"
},
"repository": {
"type": "git",
"url": "git+https://github.com/JMarques1196/garmin-tcx-parser.git"
},
"keywords": [
"react",
"tcx"
],
"author": "André Marques",
"license": "ISC",
"bugs": {
"url": "https://github.com/JMarques1196/garmin-tcx-parser/issues"
},
"homepage": "https://github.com/JMarques1196/garmin-tcx-parser#readme",
"dependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0",
"rollup": "^4.6.1"
},
"devDependencies": {
"@rollup/plugin-babel": "^6.0.4",
"@rollup/plugin-commonjs": "^25.0.7",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-terser": "^0.4.4",
"npm": "^10.2.4",
"rollup-plugin-peer-deps-external": "^2.2.4"
}
}