-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
98 lines (98 loc) · 2.72 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
{
"name": "@comake/skl-js-engine",
"version": "0.32.0",
"description": "Standard Knowledge Language Javascript Engine",
"keywords": [
"skl",
"linked-data",
"rdf"
],
"repository": {
"type": "git",
"url": "https://github.com/comake/skl-js-engine.git"
},
"bugs": {
"url": "https://github.com/comake/skl-js-engine/issues"
},
"homepage": "https://github.com/comake/skl-js-engine#readme",
"license": "BSD-4-Clause",
"author": {
"name": "Adler Faulkner",
"email": "[email protected]"
},
"scripts": {
"build": "tsc",
"jest": "jest --coverage",
"lint": "eslint . --cache --ignore-path .gitignore --ignore-pattern test/deploy --max-warnings 0",
"test": "npm run test:ts && npm run jest",
"test:ts": "tsc -p test --noEmit",
"test:integration": "jest --coverageReporters text-summary -- test/integration",
"test:unit": "jest --config=./jest.coverage.config.js test/unit",
"test:package": "chmod +x test/deploy/validate-package.sh && test/deploy/validate-package.sh",
"prepare": "husky && npm run build",
"postinstall": "patch-package"
},
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"dependencies": {
"@comake/openapi-operation-executor": "^0.13.0",
"@comake/rmlmapper-js": "^0.5.2",
"@comunica/query-sparql-rdfjs": "^2.10.0",
"@rdfjs/data-model": "^1.3.0",
"jsonld": "^8.1.0",
"jsonpath-plus": "^7.2.0",
"luxon": "^3.1.1",
"memory-level": "^1.0.0",
"mime-types": "^2.1.35",
"n3": "^1.17.2",
"patch-package": "^8.0.0",
"quadstore": "13.1.1",
"quadstore-comunica": "^4.3.0",
"rdf-data-factory": "^1.1.2",
"rdf-validate-shacl": "^0.4.4",
"sparql-http-client": "^2.4.1",
"sparqljs": "^3.7.1"
},
"devDependencies": {
"@commitlint/cli": "^17.0.3",
"@commitlint/config-conventional": "^17.0.3",
"@tsconfig/node14": "^1.0.3",
"@types/jest": "^27.4.0",
"@types/js-yaml": "^4.0.5",
"@types/jsonld": "^1.5.6",
"@types/luxon": "^3.1.0",
"@types/mime-types": "^2.1.1",
"@types/n3": "^1.10.4",
"@types/node": "^17.0.8",
"@types/rdf-validate-shacl": "^0.4.0",
"@types/rdfjs__data-model": "^2.0.1",
"@types/sparql-http-client": "^2.2.8",
"@types/sparqljs": "^3.1.3",
"@typescript-eslint/eslint-plugin": "^5.29.0",
"@typescript-eslint/parser": "^5.29.0",
"eslint": "^8.18.0",
"eslint-config-es": "^3.26.13",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest": "^25.7.0",
"eslint-plugin-tsdoc": "^0.2.16",
"eslint-plugin-unused-imports": "^2.0.0",
"fs": "^0.0.1-security",
"husky": "^9.1.7",
"jest": "^29.5.0",
"jsdom": "^20.0.0",
"ts-jest": "^29.1.0",
"ts-node": "^10.8.0",
"typescript": "^4.5.4"
},
"peerDependencies": {
"axios": "^0.27.2"
}
}