This repository was archived by the owner on Oct 1, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.36 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.36 KB
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
{
"name": "jsonld2graphobject",
"version": "0.0.5",
"description": "Converts JSON-LD to an Object Literal Graph",
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"watch": "tsc --watch",
"test": "jest --coverage",
"test:watch": "jest --watch",
"docs": "typedoc",
"prepublishOnly": "npm run test && npm run build && npm run docs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/o-development/jsonld2graphobject.git"
},
"author": "Jackson Morgan",
"license": "MIT",
"bugs": {
"url": "https://github.com/o-development/jsonld2graphobject/issues"
},
"homepage": "https://github.com/o-development/jsonld2graphobject#readme",
"devDependencies": {
"@types/jest": "^27.0.3",
"@types/uuid": "^8.3.3",
"@typescript-eslint/eslint-plugin": "^5.5.0",
"@typescript-eslint/parser": "^5.5.0",
"eslint": "^8.3.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"jest": "^27.4.2",
"o-dataset-pack": "^0.2.0",
"prettier": "^2.5.0",
"shex-test": "^2.1.0",
"ts-jest": "^27.0.7",
"ts-node": "^10.4.0",
"typedoc": "^0.22.10",
"typedoc-plugin-markdown": "^3.11.7",
"typescript": "^4.5.2"
},
"dependencies": {
"@rdfjs/types": "^1.0.1",
"@types/jsonld": "^1.5.6",
"jsonld-context-parser": "^2.1.5",
"uuid": "^8.3.2"
}
}