-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.78 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
{
"name": "@c2corg/fit-parser-extract-geometry",
"version": "1.0.2",
"description": "Basic FIT parser that only focuses on extracting geometry from activities",
"type": "commonjs",
"main": "bin/index.js",
"types": "bin/index.d.ts",
"files": [
"bin/"
],
"scripts": {
"build": "tsc",
"lint": "eslint --fix src/ test/",
"lint:ci": "eslint src/ test/ -f junit -o ./reports/junit/eslint-results.xml",
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js --runInBand",
"import-sdk-profile": "ts-node src/import-sdk-profile.ts",
"prepare": "husky",
"preversion": "npm run build && npm run lint && npm run test",
"prepublish": "npm run build && npm run lint && npm run test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/c2corg/fit-parser-extract-geometry.git"
},
"keywords": [
"fit"
],
"author": "Camptocamp community <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/c2corg/fit-parser-extract-geometry/issues",
"email": "[email protected]"
},
"homepage": "https://github.com/c2corg/fit-parser-extract-geometry#readme",
"devDependencies": {
"@tsconfig/node20": "20.1.4",
"@tsconfig/strictest": "2.0.5",
"@types/debug": "4.1.12",
"@types/jest": "29.5.14",
"@types/node": "20.14.9",
"@typescript-eslint/eslint-plugin": "7.5.0",
"@typescript-eslint/parser": "7.18.0",
"debug": "4.3.7",
"eslint": "8.57.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-prettier": "5.2.1",
"eslint-plugin-security": "3.0.1",
"husky": "9.1.7",
"jest": "29.7.0",
"jest-junit": "16.0.0",
"lint-staged": "15.2.10",
"prettier": "3.3.3",
"ts-jest": "29.2.5",
"ts-node": "10.9.2",
"typescript": "5.6.3"
}
}