-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.47 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
{
"name": "@comake/shacl-to-json-schema",
"version": "1.0.3",
"description": "",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "tsc",
"jest": "jest --coverage",
"test": "npm run test:ts && npm run jest",
"test:ts": "tsc -p test --noEmit",
"test:integration": "jest --coverageReporters text-summary -- test/integration",
"prepare": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/comake/shacl-to-json-schema.git"
},
"keywords": [
"shacl",
"json-schema",
"converter",
"rdf",
"json"
],
"author": "Adler Faulkner <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/comake/shacl-to-json-schema/issues"
},
"homepage": "https://github.com/comake/shacl-to-json-schema#readme",
"devDependencies": {
"@tsconfig/node16": "^1.0.3",
"@types/jest": "^29.5.2",
"@types/jsonld": "^1.5.9",
"@types/node": "^18.11.18",
"@typescript-eslint/eslint-plugin": "^5.3.0",
"@typescript-eslint/parser": "^5.4.0",
"eslint": "^8.31.0",
"eslint-config-es": "4.1.0",
"eslint-import-resolver-typescript": "^3.2.5",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-jest": "^27.2.2",
"eslint-plugin-tsdoc": "^0.2.17",
"eslint-plugin-unused-imports": "^2.0.0",
"jest": "^29.6.1",
"ts-jest": "^29.1.1",
"typescript": "^4.9.4"
}
}