-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
79 lines (79 loc) · 1.67 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
{
"name": "vcard4-ts",
"version": "0.4.1",
"description": "A vCard v4 parser with type safety first",
"type": "module",
"main": "./dist/index.js",
"exports": "./dist/index.js",
"types": "dist/index.d.ts",
"files": [
"src/",
"dist/",
"assets/",
"*.md",
"*.json"
],
"homepage": "https:/netfuture.ch/vcard4-ts/",
"repository": {
"type": "git",
"url": "https://github.com/MarcelWaldvogel/vcard4-ts.git"
},
"author": "Marcel Waldvogel",
"license": "MIT",
"keywords": [
"vcard",
"vcard4",
"vcf",
"vcf4",
"typescript",
"ts",
"esm"
],
"scripts": {
"test": "yarn jest",
"test:badge": "yarn jest && yarn make-coverage-badge --output-path=./assets/coverage-badge.svg",
"test-watch": "jest --watch",
"vscode-jest-tests": "jest",
"build": "tsc",
"prepublish": "yarn test:badge && yarn build"
},
"engines": {
"node": "^12.20.0 || ^14.13.1 || >=16.0.0"
},
"jest": {
"preset": "ts-jest",
"testPathIgnorePatterns": [
"/node_modules/",
"/dist/"
],
"testEnvironment": "node",
"coverageReporters": [
"json-summary",
"text"
],
"collectCoverage": true,
"collectCoverageFrom": [
"src/*.ts"
],
"extensionsToTreatAsEsm": [
".ts"
],
"moduleNameMapper": {
"^(.*).js$": [
"$1.ts",
"$1.js"
]
},
"slowTestThreshold": 10
},
"devDependencies": {
"@types/jest": "^27.0.2",
"@typescript-eslint/parser": "^5.0.0",
"eslint": "^8.0.0",
"jest": "^27.0.0",
"make-coverage-badge": "^1.2.0",
"prettier": "^2.0.0",
"ts-jest": "^27.0.0",
"typescript": "^4.1.0"
}
}