-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
78 lines (78 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
77
78
{
"name": "hylar-core",
"version": "1.0.0",
"description": "A lightweight module containing core reasoner logic from HyLAR (https://github.com/ucbl/HyLAR-Reasoner.git)",
"main": "dist/index.js",
"types": "dist/index.d.js",
"directories": {
"lib": "lib"
},
"files": [
"dist"
],
"scripts": {
"test": "jest",
"lint": "eslint lib/* __tests__/* --ext .ts",
"lint:fix": "eslint lib/* __tests__/* --ext .ts --fix",
"build": "tsc",
"prepare": "tsc",
"semantic-release": "semantic-release"
},
"keywords": [
"OWL",
"Reasoner",
"HyLAR"
],
"author": "Jesse Wright <https://github.com/jeswr/>",
"license": "MIT",
"devDependencies": {
"@types/jest": "^28.1.6",
"@types/n3": "^1.10.4",
"@types/rdf-js": "^4.0.1",
"@typescript-eslint/eslint-plugin": "^5.33.0",
"@typescript-eslint/parser": "^5.33.0",
"eslint": "^8.21.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.0.0",
"jest": "^28.1.3",
"n3": "^1.16.2",
"pre-commit": "^1.2.2",
"rdf-js": "^4.0.2",
"ts-jest": "^28.0.7",
"typescript": "^5.5.3"
},
"jest": {
"preset": "ts-jest",
"testPathIgnorePatterns": [
".d.ts"
],
"collectCoverage": true,
"coverageThreshold": {
"global": {
"branches": 35,
"functions": 40,
"lines": 40,
"statements": 40
}
}
},
"dependencies": {
"@rdfjs/data-model": "^1.3.4",
"md5": "^2.3.0",
"rdf-string": "^1.6.1",
"rdf-string-ttl": "^1.2.0"
},
"pre-commit": [
"lint",
"build",
"test"
],
"release": {
"branches": [
"main"
]
}
}