forked from dokieli/dokieli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
82 lines (82 loc) · 2.18 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
74
75
76
77
78
79
80
81
82
{
"name": "dokieli",
"version": "0.3.75",
"description": "dokieli is a client-side editor for decentralised article publishing, annotations and social interactions",
"main": "./src/dokieli.js",
"scripts": {
"build-dist": "webpack --progress --color",
"build": "npm run build-dist",
"standard": "standard src/auth.js src/doc.js src/fetcher.js src/graph.js src/inbox.js src/simplerdf.js src/uri.js src/util.js ",
"test": "jest",
"watch": "webpack --progress --color --watch",
"minify": "webpack --progress --color --env minimize"
},
"repository": {
"type": "git",
"url": "https://github.com/linkeddata/dokieli"
},
"keywords": [
"decentralized",
"linked data",
"rdf",
"research",
"web annotation",
"webid"
],
"author": "the dokieli team",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/linkeddata/dokieli/issues"
},
"homepage": "https://dokie.li/",
"engines": {
"npm": ">=8.0.0",
"node": ">=16.0.0"
},
"dependencies": {
"buffer": "^6.0.3",
"d3-force": "^2.0.1",
"d3-selection": "^1.4.1",
"fs": "0.0.1-security",
"medium-editor": "^5.23.3",
"medium-editor-tables": "^0.6.1",
"node-fetch": "^3.2.3",
"npm": "^8.5.5",
"process": "^0.11.10",
"rdf-parser-rdfa": "https://github.com/rdf-ext/rdf-parser-rdfa.git#master",
"rdf-store-ldp": "^0.3.1",
"shower": "https://github.com/shower/core.git#main",
"simplerdf": "^0.2.14",
"simplerdf-parse": "^0.1.3",
"solid-auth-client": "^2.5.0",
"terser-webpack-plugin": "^5.3.3",
"trackjs": "^3.7.3",
"wrapper-webpack-plugin": "^2.2.2"
},
"devDependencies": {
"jest": "^29.0.3",
"jest-environment-jsdom": "^29.0.3",
"standard": "^16.0.4",
"webpack": "^5.70.0",
"webpack-cli": "^4.9.2"
},
"overrides": {
"node-fetch": "^3.2.3",
"ansi-regex": "^5.0.0",
"xmldom": "https://github.com/xmldom/xmldom.git#master",
"green-turtle": "https://github.com/csarven/green-turtle#master"
},
"standard": {
"globals": [
"DO",
"SimpleRDF",
"ld",
"describe",
"it",
"before",
"beforeEach",
"after",
"afterEach"
]
}
}