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
104 lines (104 loc) · 2.54 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
{
"name": "construct-inferences-shacl",
"version": "0.0.0-development",
"description": "Sets of construct queries used to perform inferencing on SHACL constraints",
"main": "dist/index.js",
"types": "dist/index.d.js",
"directories": {
"lib": "lib"
},
"files": [
"dist"
],
"scripts": {
"test:coverage": "npm test -- --coverage",
"test": "jest",
"lint": "eslint lib/* __tests__/* --ext .ts",
"lint:fix": "eslint lib/* __tests__/* --ext .ts --fix",
"build:sets": "ts-node bin/generate-sets",
"build:queries": "ts-node bin/sets-to-query",
"build": "npm run build:sets && npm run build:queries && npm run lint:fix && tsc",
"prepublishOnly": "npm run build",
"semantic-release": "semantic-release"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jeswr/construct-inferences-shacl.git"
},
"keywords": [
"SHACL",
"CONSTRUCT",
"inferencing",
"rdf",
"owl"
],
"author": "Jesse Wright <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/jeswr/construct-inferences-shacl/issues"
},
"homepage": "https://github.com/jeswr/construct-inferences-shacl#readme",
"devDependencies": {
"@rdfjs/data-model": "^2.0.0",
"@types/deindent": "^0.1.0",
"@types/jest": "^27.0.0",
"@types/n3": "^1.4.4",
"@types/ramda": "^0.29.0",
"@typescript-eslint/eslint-plugin": "^7.0.1",
"@typescript-eslint/parser": "^7.0.1",
"build-logic-statement-ts": "^1.1.0",
"deindent": "^0.1.0",
"eslint": "^8.0.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.22.1",
"hylar-core": "^1.1.0",
"jest": "^27.0.1",
"n3": "^1.8.0",
"pre-commit": "^1.2.2",
"ramda": "^0.29.0",
"semantic-release": "^23.0.0",
"sparql-inferenced": "^1.0.1",
"text-camel-case": "^1.0.2",
"ts-jest": "^27.0.1",
"ts-morph": "^22.0.0",
"ts-node": "^10.0.0",
"typescript": "^4.1.3"
},
"jest": {
"preset": "ts-jest",
"collectCoverage": true,
"coverageReporters": [
"json-summary",
"text",
"lcov"
],
"coverageThreshold": {
"global": {
"branches": 100,
"functions": 100,
"lines": 100,
"statements": 100
}
}
},
"pre-commit": [
"lint",
"build",
"test"
],
"release": {
"branches": [
"main",
"+([0-9])?(.{+([0-9]),x}).x",
"next",
{
"name": "alpha",
"prerelease": true
},
{
"name": "beta",
"prerelease": true
}
]
}
}