-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 913 Bytes
/
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
{
"name": "ontl",
"version": "0.2.0",
"description": "A collection of ontologies serialised in turtle, readable as stream.",
"author": "Matthieu Bosquet",
"license": "MIT",
"keywords": [
"ontology",
"turtle",
"rdf",
"stream"
],
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"resources"
],
"scripts": {
"build": "tsc -p .tsconfig.json",
"prepublishOnly": "npm install && npm run build",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/matthieubosquet/ontologies.git"
},
"bugs": {
"url": "https://github.com/matthieubosquet/ontologies/issues"
},
"homepage": "https://github.com/matthieubosquet/ontologies#readme",
"devDependencies": {
"@tsconfig/node12": "^1.0.9",
"@types/node": "^16.4.6",
"typescript": "^4.3.5"
}
}