-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
90 lines (90 loc) · 2.29 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
89
90
{
"name": "adif-parser-ts",
"version": "0.6.15",
"description": "An amateur radio log data ADIF parser in Typescript and Javascript",
"keywords": [
"amateur radio",
"ham radio",
"adif",
"log",
"parser"
],
"main": "dist/adif-parser.umd.js",
"module": "dist/adif-parser.es5.js",
"typings": "dist/types/adif-parser.d.ts",
"files": [
"dist"
],
"author": "Chris Keller <[email protected]>",
"repository": {
"type": "git",
"url": "https://github.com/k0swe/adif-parser-ts"
},
"license": "Apache-2.0",
"engines": {
"node": ">=14.0.0",
"npm": ">7.0.0"
},
"scripts": {
"lint": "tslint --project tsconfig.json -t codeFrame 'src/**/*.ts' 'test/**/*.ts'",
"build": "tsc --module commonjs && rollup -c rollup.config.ts && typedoc --entryPointStrategy expand --out docs src",
"test": "jest --coverage",
"test:watch": "jest --coverage --watch",
"test:prod": "npm run lint && npm run test -- --no-cache",
"report-coverage": "cat ./coverage/lcov.info | coveralls"
},
"jest": {
"transform": {
".(ts|tsx)": "ts-jest"
},
"testEnvironment": "node",
"testRegex": "(/__tests__/.*|\\.(test|spec))\\.(ts|tsx|js)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js"
],
"coveragePathIgnorePatterns": [
"/node_modules/",
"/test/"
],
"coverageThreshold": {
"global": {
"branches": 90,
"functions": 95,
"lines": 95,
"statements": 95
}
},
"collectCoverageFrom": [
"src/*.{js,ts}"
]
},
"prettier": {
"singleQuote": true
},
"devDependencies": {
"@types/jest": "29.5.14",
"@types/node": "20.17.6",
"coveralls": "3.1.1",
"cross-env": "7.0.3",
"jest": "29.7.0",
"jest-config": "29.7.0",
"lint-staged": "15.2.10",
"lodash.camelcase": "4.3.0",
"prettier": "3.3.3",
"rollup": "2.79.2",
"rollup-plugin-commonjs": "10.1.0",
"rollup-plugin-json": "4.0.0",
"rollup-plugin-node-resolve": "5.2.0",
"rollup-plugin-sourcemaps": "0.6.3",
"rollup-plugin-typescript2": "0.36.0",
"ts-jest": "29.2.5",
"ts-node": "10.9.2",
"tslint": "6.1.3",
"tslint-config-prettier": "1.18.0",
"tslint-config-standard": "9.0.0",
"typedoc": "0.26.11",
"typescript": "5.6.3"
}
}