-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.67 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
{
"name": "@bruju/shacled-turtle-demo",
"version": "0.0.1",
"description": "PREC and Shacled Turtle demonstration website",
"source": "./src/index.html",
"scripts": {
"start": "npx parcel ./src/*.html -p 12345",
"build": "npx parcel build ./src/*.html --public-url ./ --dist-dir ./dist",
"clean": "npx del-cli ../.parcel-cache/ && npx del-cli dist/",
"test": "npx mocha -r ts-node/register test/*.test.ts"
},
"repository": {
"type": "git",
"url": "https://github.com/BruJu/shacled-turtle",
"directory": "demo"
},
"author": "Julian Bruyat <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/BruJu/shacled-turtle/issues"
},
"homepage": "https://github.com/BruJu/shacled-turtle#readme",
"devDependencies": {
"@lezer/common": "^0.15.11",
"@rdfjs/types": "^1.0.1",
"@types/mocha": "^9.1.0",
"@types/n3": "^1.10.4",
"@types/rdf-validate-shacl": "^0.4.0",
"@types/rdfjs__namespace": "^1.1.5",
"@types/rdfjs__term-map": "^1.0.2",
"@types/rdfjs__term-set": "^1.0.3",
"del-cli": "^4.0.1",
"mocha": "^9.2.0",
"parcel": "^2.0.1",
"ts-node": "^10.5.0",
"typescript": "^4.5.2"
},
"dependencies": {
"@codemirror/basic-setup": "^0.19.1",
"@codemirror/language": "^0.19.7",
"@codemirror/legacy-modes": "^0.19.0",
"@codemirror/state": "^0.19.6",
"@codemirror/stream-parser": "^0.19.3",
"@codemirror/view": "^0.19.37",
"@rdfjs/namespace": "^1.1.0",
"@rdfjs/term-map": "^1.1.0",
"axios": "^0.24.0",
"express": "^4.17.1",
"n3": "^1.12.2",
"rdf-string": "^1.6.0",
"rdf-validate-shacl": "^0.4.3",
"shacled-turtle": "^0.0.2"
}
}