-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
81 lines (81 loc) · 2.08 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
{
"name": "json-schema-ld",
"version": "3.2.5",
"description": "JSON-Schema-LD is a syntactic sugar for JSON Schema to enable generative interoperability by means of representing JSON schema in RDF vocabularies (RDF Scheme) and RDF shapes in SHACL.",
"main": "./dist/src/lib/jscld.js",
"bin": "./dist/src/lib/jscld.js",
"scripts": {
"build": "rm -rf dist/; tsc",
"test": "jest --ci --coverage && tsc --noemit",
"watch-test": "jest --watch",
"release": " npm run build && npm publish --access public"
},
"files": [
"./dist/src/lib/*.js",
"./dist/src/utils/*.js"
],
"jest": {
"transform": {
"transform_regex": [
"ts-jest",
{
"tsconfig": "./tsconfig.json"
}
],
"^.+\\.ts$": "<rootDir>/node_modules/ts-jest"
},
"testRegex": "(/tests/.*|(\\\\.|/)(test|spec))-test.ts$",
"moduleFileExtensions": [
"ts",
"js"
],
"collectCoverage": true,
"coveragePathIgnorePatterns": [
"/node_modules/",
"/mocks/",
"index.js"
],
"testEnvironment": "node"
},
"keywords": [
"JSON schema",
"JSON",
"JSC",
"JSON-Schema-LD",
"JSC-LD",
"Linked data",
"RDF",
"RDFS",
"Shacl"
],
"repository": {
"type": "git",
"url": "git+https://github.com/jiaoxlong/json-schema-ld.git"
},
"homepage": "https://github.com/jiaoxlong/json-schema-ld#readme",
"author": "Jiao Long <jiao.long@ugent.be>",
"license": "ISC",
"dependencies": {
"@treecg/types": "^0.4.0",
"@types/node": "^17.0.31",
"command-line-args": "^5.2.1",
"command-line-usage": "^6.1.3",
"componentsjs": "^5.1.0",
"inflection": "^1.13.4",
"n3": "^1.16.2",
"path-type": "^5.0.0",
"typescript": "^4.6.4"
},
"devDependencies": {
"@types/jest": "^29.0.3",
"@types/node-fetch": "^2.6.1",
"@types/rdf-js": "^4.0.2",
"@typescript-eslint/eslint-plugin": "^5.38.1",
"@typescript-eslint/parser": "^5.38.1",
"eslint": "^8.24.0",
"jest": "^29.1.0",
"jest-rdf": "^1.7.0",
"ts-jest": "^29.0.2",
"typedoc": "^0.23.15"
}
}