This repository has been archived by the owner on Apr 4, 2024. It is now read-only.
generated from jeswr/template-typescript
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
76 lines (76 loc) · 1.75 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
{
"name": "@on2ts/ontologies",
"private": true,
"scripts": {
"test:coverage": "npm test -- --coverage",
"test:badges": "npm run test:coverage && jest-coverage-badges",
"test": "jest",
"lint": "eslint **/lib/*.ts **/__tests__/*.ts --ext .ts",
"lint:fix": "eslint **/lib/*.ts **/__tests__/*.ts --ext .ts --fix",
"build": "lerna bootstrap && lerna run tsc",
"prepare": "npm run build",
"semantic-release": "semantic-release"
},
"repository": {
"type": "git",
"url": "git+https://github.com/on2ts/ontologies"
},
"keywords": [],
"author": "Jesse Wright <[email protected]>",
"license": "MIT",
"devDependencies": {
"@types/jest": "^27.0.1",
"@typescript-eslint/eslint-plugin": "^7.0.1",
"@typescript-eslint/parser": "^7.0.1",
"eslint": "^8.0.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.22.1",
"jest": "^27.0.3",
"jest-coverage-badges": "^1.1.2",
"lerna": "^8.0.0",
"pre-commit": "^1.2.2",
"semantic-release": "^23.0.0",
"ts-jest": "^27.0.2",
"typescript": "^4.1.3"
},
"jest": {
"preset": "ts-jest",
"collectCoverage": true,
"coverageReporters": [
"json-summary",
"text",
"lcov"
],
"collectCoverageFrom": [
"**/[^\\.]+.{ts,tsx}"
],
"coverageThreshold": {
"global": {
"branches": 95,
"functions": 80,
"lines": 95,
"statements": 95
}
}
},
"pre-commit": [
"lint",
"build",
"test"
],
"release": {
"branches": [
"main",
"+([0-9])?(.{+([0-9]),x}).x",
"next",
{
"name": "alpha",
"prerelease": true
},
{
"name": "beta",
"prerelease": true
}
]
}
}