This repository has been archived by the owner on Sep 5, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
70 lines (70 loc) · 2.05 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
{
"name": "@ontologies/core",
"version": "1.5.0",
"description": "Like definitely typed, but for ontologies",
"main": "dist/cjs/index.js",
"module": "dist/module/index.js",
"sideEffects": true,
"types": "dist/module/index.d.ts",
"scripts": {
"clean": "rm -rf packages/* && rm -rf dist/*",
"build": "yarn build:core && yarn generate",
"build:core": "cd core && (yarn build || true) && cd ..",
"generate": "ts-node src/index.ts",
"rebuild": "yarn clean && yarn build",
"regenerate": "yarn clean && yarn generate",
"test": "eslint --no-eslintrc -c ./eslint.json ./packages/**/*.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ontola/ontologies.git"
},
"author": "Rescribet <thom@ontola.io>",
"license": "MIT",
"bugs": {
"url": "https://github.com/ontola/ontologies/issues"
},
"homepage": "https://github.com/ontola/ontologies#readme",
"dependencies": {
"@ungap/global-this": "^0.3.1"
},
"peerDependencies": {
"@ontologies/core": ">=1.5.0"
},
"devDependencies": {
"@babel/core": "^7.15.5",
"@babel/parser": "^7.15.7",
"@babel/types": "^7.15.6",
"@ontola/memoized-hash-factory": "^2.0.1",
"@ontologies/as": "^1.0.1",
"@ontologies/core": "^2.0.2",
"@ontologies/ld": "^1.0.0",
"@ontologies/owl": "^1.0.0",
"@ontologies/rdf": "^1.0.0",
"@ontologies/rdfs": "^1.0.0",
"@ontologies/schema": "^1.0.0",
"@ontologies/shacl": "^1.0.0",
"@ontologies/xsd": "^1.0.0",
"@pika/pack": "^0.5.0",
"@rdfdev/iri": "^1.2.0",
"@types/glob": "^7.1.4",
"@types/n3": "1.10.4",
"@types/semver": "^7.3.8",
"@types/shelljs": "^0.8.9",
"eslint": "^7.32.0",
"glob": "^7.2.0",
"handlebars": "^4.7.7",
"http-status-codes": "^2.1.4",
"link-lib": "^2.1.1",
"n-quads-parser": "^2.1.1",
"n3": "^1.12.2",
"npm-registry-fetch": "^11.0.0",
"rdf-js": "^4.0.2",
"rdflib": "^2.2.7",
"semver": "^7.3.5",
"shelljs": "^0.8.4",
"ts-morph": "^12.0.0",
"ts-node": "^10.2.1",
"typescript": "^4.4.3"
}
}