-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.68 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.68 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
{
"name": "sdo-check",
"version": "1.0.0",
"description": "This is an open-source version of the SDO-Check tool of semantify.it (http://sdocheck.semantify.it/)",
"main": "index.js",
"scripts": {
"start": "open-cli sdoCheck.html",
"buildExtractor": "browserify extraction/src/Extractor.js -s Extractor -g [uglifyify] | derequire -cm --toplevel > extraction/extractorBundle.js",
"buildGeneralVerificator": "browserify verification/src/GeneralVerification.js -s GeneralVerificator -g [uglifyify] | derequire -cm --toplevel > verification/generalVerificationBundle.js",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/semantifyit/sdo-check.git"
},
"keywords": [
"sdo-check",
"schema.org",
"validator",
"verifier",
"validation",
"verification"
],
"author": {
"name": "Omar J. A. Holzknecht for STI Innsbruck",
"url": "https://semantify.it"
},
"license": "CC-BY-SA-3.0",
"bugs": {
"url": "https://github.com/semantifyit/sdo-check/issues"
},
"homepage": "https://github.com/semantifyit/sdo-check#readme",
"dependencies": {
"bootstrap": "^4.5.3",
"bootstrap-material-design": "^0.5.10",
"clipboard": "^2.0.6",
"codemirror": "^5.58.3",
"jquery": "^3.5.1",
"jsonlint-mod": "^1.7.6",
"jstree": "^3.3.10",
"open-cli": "^6.0.1",
"schema-org-adapter": "^3.3.0"
},
"devDependencies": {
"browserify": "^17.0.0",
"browserify-derequire": "^1.0.1",
"jest": "^26.6.3",
"jsonld": "^3.2.0",
"moment": "^2.29.1",
"uglifyify": "^5.0.2",
"web-auto-extractor": "^1.0.16"
},
"jest": {
"testEnvironment": "node",
"testTimeout": 30000
}
}