generated from jeswr/template-typescript
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
115 lines (115 loc) · 2.7 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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
{
"name": "root",
"version": "0.0.0-development",
"description": "",
"main": "dist/index.js",
"types": "dist/index.d.js",
"directories": {
"lib": "lib"
},
"files": [
"lib"
],
"private": true,
"workspaces": [
"packages/*",
"packages/fields/react/generic/*",
"packages/fields/react/standard/*"
],
"useWorkspaces": true,
"scripts": {
"test:coverage": "npm test -- --coverage",
"test:badges": "npm run test:coverage && jest-coverage-badges",
"test": "jest",
"lint": "eslint **/**.ts **/**.tsx",
"lint:fix": "eslint **/**.ts **/**.tsx --fix",
"build": "lerna run build",
"postinstall": "yarn run build",
"semantic-release": "semantic-release",
"typedoc": "typedoc",
"webpack": "webpack --mode=development"
},
"repository": {
"type": "git",
"url": ""
},
"keywords": [],
"author": "Jesse Wright <jesse.wright@anu.edu.au>",
"license": "MIT",
"bugs": {
"url": ""
},
"homepage": "",
"devDependencies": {
"@jeswr/use-state": "^1.0.3",
"@rdfjs/data-model": "^1.2.0",
"@strictsoftware/typedoc-plugin-monorepo": "^0.4.2",
"@types/jest": "^27.0.3",
"@types/rdf-js": "^4.0.1",
"@types/react-dom": "^17.0.3",
"@types/react-test-renderer": "^17.0.1",
"@typescript-eslint/eslint-plugin": "^4.12.0",
"@typescript-eslint/parser": "^4.12.0",
"build-logic-statement-ts": "^1.1.0",
"eslint": "^7.17.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-extra-rules": "^0.0.0-development",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-react-hooks": "^4.2.0",
"eslint-plugin-unused-imports": "^1.1.0",
"jest": "^27.0.6",
"lerna": "^4.0.0",
"pre-commit": "^1.2.2",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-test-renderer": "^17.0.1",
"semantic-release": "^17.3.1",
"ts-jest": "^27.0.3",
"ts-loader": "^9.2.3",
"typedoc": "^0.22.10",
"typescript": "^4.1.5",
"webpack": "^5.30.0",
"webpack-cli": "^4.6.0"
},
"jest": {
"preset": "ts-jest",
"collectCoverage": true,
"coverageReporters": [
"json-summary",
"text",
"lcov"
],
"collectCoverageFrom": [
"**/[^\\.]+.{ts,tsx}"
],
"testRegex": "[^.]*/__tests__/[^.]*-test\\.tsx?$",
"coverageThreshold": {
"global": {
"branches": 50,
"functions": 50,
"lines": 50,
"statements": 50
}
}
},
"pre-commit": [
"lint",
"build",
"test"
],
"release": {
"branches": [
"main",
"+([0-9])?(.{+([0-9]),x}).x",
"next",
{
"name": "alpha",
"prerelease": true
},
{
"name": "beta",
"prerelease": true
}
]
}
}