generated from jeswr/template-typescript
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 1.47 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 1.47 KB
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
{
"name": "@ldfields/props-rdf-conversion",
"version": "0.0.11",
"description": "Converts between LDfield props and rdf data",
"keywords": [
"LDfields",
"linked",
"data",
"input",
"rdf",
"owl"
],
"author": "jeswr <jesse.wright@anu.edu.au>",
"homepage": "https://github.com/schimatos/LDfields#readme",
"license": "MIT",
"main": "lib/index.js",
"types": "lib/index.d.js",
"directories": {
"lib": "lib",
"test": "__tests__"
},
"files": [
"lib",
"types"
],
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/schimatos/LDfields.git"
},
"scripts": {
"tsc": "tsc",
"build": "tsc",
"prepublishOnly": "tsc",
"test": "jest"
},
"bugs": {
"url": "https://github.com/schimatos/LDfields/issues"
},
"dependencies": {
"@rdfjs/data-model": "^2.0.0",
"@types/react": "^17.0.3"
},
"devDependencies": {
"@types/rdf-js": "^4.0.1",
"jest": "^27.4.1",
"ts-jest": "^27.1.2",
"typescript": "^4.2.2"
},
"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
}
}
}
}