-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.32 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.32 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"name": "jsonld-cli",
"version": "2.0.1-0",
"description": "A JSON-LD command line interface tool.",
"homepage": "https://github.com/digitalbazaar/jsonld-cli",
"author": {
"name": "Digital Bazaar, Inc.",
"email": "support@digitalbazaar.com",
"url": "https://digitalbazaar.com/"
},
"contributors": [
{
"name": "Dave Longley",
"email": "dlongley@digitalbazaar.com"
},
{
"name": "David I. Lehn",
"email": "dlehn@digitalbazaar.com"
}
],
"repository": {
"type": "git",
"url": "https://github.com/digitalbazaar/jsonld-cli"
},
"bugs": {
"url": "https://github.com/digitalbazaar/jsonld-cli/issues",
"email": "support@digitalbazaar.com"
},
"license": "BSD-3-Clause",
"bin": {
"jsonld": "./bin/jsonld.js"
},
"type": "module",
"dependencies": {
"commander": "^11.1.0",
"jsonld": "^8.3.2",
"jsonld-request": "^2.0.1"
},
"devDependencies": {
"eslint": "^8.56.0",
"eslint-config-digitalbazaar": "^5.0.1",
"eslint-plugin-jsdoc": "^48.0.1",
"eslint-plugin-unicorn": "^50.0.1"
},
"files": [
"bin/**/*.js"
],
"engines": {
"node": ">=16"
},
"keywords": [
"JSON",
"JSON-LD",
"Linked Data",
"RDF",
"RDFa",
"Semantic Web",
"jsonld"
],
"scripts": {
"lint": "eslint ."
}
}