This repository has been archived by the owner on Mar 9, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
73 lines (73 loc) · 1.78 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
{
"name": "jsonld-vocab",
"version": "3.1.0",
"description": "Build, parse and inspect vocabularies defined as RDF classes in JSON-LD form and create documents using vocabularies",
"main": "./lib/index.js",
"scripts": {
"clean": "rimraf ./lib ./coverage",
"coverage": "npm run test && opener ./coverage/index.html",
"lint": "tslint --config tslint.json --project tsconfig.json 'src/**/*'",
"build": "npm run lint && tsc",
"test": "nyc mocha",
"prepublishOnly": "npm run clean && npm run build && npm run test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/riteshrao/jsonld-vocab.git"
},
"keywords": [
"json-ld",
"rdf",
"rdf-classes",
"graph"
],
"author": "Ritesh Rao",
"license": "MIT",
"bugs": {
"url": "https://github.com/riteshrao/jsonld-vocab/issues"
},
"homepage": "https://github.com/riteshrao/jsonld-vocab#readme",
"devDependencies": {
"@types/chai": "^4.2.9",
"@types/mocha": "^5.2.7",
"@types/node": "^11.15.6",
"chai": "^4.2.0",
"mocha": "^8.1.1",
"nyc": "^14.1.1",
"opener": "^1.5.1",
"rimraf": "^2.7.1",
"source-map-support": "^0.5.16",
"ts-node": "^8.6.2",
"tslint": "^5.20.1",
"tslint-config-airbnb": "^5.11.2",
"tslint-config-prettier": "^1.18.0",
"tslint-no-unused-expression-chai": "^0.1.4",
"typescript": "^3.7.5"
},
"dependencies": {
"jsiterable": "^3.0.3",
"jsonld-graph": "^3.1.0"
},
"nyc": {
"all": true,
"cache": false,
"include": [
"src/**/*.ts"
],
"exclude": [
"**/*.d.ts",
"test/**",
"src/types.ts"
],
"reporter": [
"html",
"json",
"text-summary"
],
"extension": [
".ts"
],
"source-map": true,
"instrument": true
}
}