-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 2.58 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 2.58 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
{
"name": "@solid/pivot",
"version": "1.8.0",
"description": "A module for the Community Solid Server that allows to create containers that do SHACL shape validation.",
"repository": "git@github.com:solid-contrib/pivot.git",
"bugs": {
"url": "https://github.com/solid-contrib/pivot/issues"
},
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"lsd:module": "https://linkedsoftwaredependencies.org/bundles/npm/@solid/pivot",
"lsd:components": "dist/components/components.jsonld",
"lsd:contexts": {
"https://linkedsoftwaredependencies.org/bundles/npm/@solid/pivot/^1.0.0/components/context.jsonld": "dist/components/context.jsonld"
},
"lsd:importPaths": {
"https://linkedsoftwaredependencies.org/bundles/npm/@solid/pivot/^1.0.0/components/": "dist/components/",
"https://linkedsoftwaredependencies.org/bundles/npm/@solid/pivot/^1.0.0/config/": "config/",
"https://linkedsoftwaredependencies.org/bundles/npm/@solid/pivot/^1.0.0/dist/": "dist/"
},
"scripts": {
"start": "community-solid-server --loggingLevel debug -c config/prod.json ./custom-config.json -f ./data --httpsKey ./key.pem --httpsCert ./cert.pem -p 443 -b https://lolcathost.de -m .",
"start-dev/suffix": "npx community-solid-server -c ./config/dev-http-suffix.json config/customise-me.json -f ./data-suffix -p 3100 -b http://localhost:3100 -m .",
"start-dev/subdomain": "npx community-solid-server -c ./config/dev-http-subdomain.json config/customise-me.json -f ./data-subdomain -p 3000 -b http://localhost:3000 -m .",
"staging": "npx community-solid-server -c ./config/prod.json ./custom-config.json -f ./data --httpsKey /etc/letsencrypt/live/pivot.pondersource.com-0001/privkey.pem --httpsCert /etc/letsencrypt/live/pivot.pondersource.com-0001/fullchain.pem -p 443 -b https://pivot.pondersource.com -m .",
"build": "npm run build:ts && npm run build:components",
"build:components": "componentsjs-generator -s src -c dist/components -i .componentsignore -r pivot",
"build:ts": "tsc",
"prepare": "npm run build",
"test": "jest"
},
"files": [
"dist",
"config",
"templates",
"www"
],
"dependencies": {
"@inrupt/solid-client-authn-core": "^3.1.1",
"@solid/community-server": "^7.1.9",
"mashlib": "^2.1.4",
"rdflib": "^2.3.6"
},
"devDependencies": {
"@tsconfig/node14": "^14.1.8",
"@types/jest": "^30.0.0",
"@types/node-fetch": "^2.6.13",
"componentsjs-generator": "^3.1.2",
"jest": "^30.3.0",
"jest-rdf": "^2.0.0",
"node-fetch": "^3.3.2",
"ts-jest": "^29.4.6",
"typescript": "^5.9.3"
},
"license": "MIT"
}