-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 2.16 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 2.16 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
{
"name": "predicate-cardinalities-component",
"version": "1.0.0",
"description": "A component for the Community Solid Server that allows to expose a view containing the predicate cardinalities in the pod.",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"lsd:module": "https://linkedsoftwaredependencies.org/bundles/npm/predicate-cardinalities-component",
"lsd:components": "dist/components/components.jsonld",
"lsd:contexts": {
"https://linkedsoftwaredependencies.org/bundles/npm/predicate-cardinalities-component/^1.0.0/components/context.jsonld": "dist/components/context.jsonld"
},
"lsd:importPaths": {
"https://linkedsoftwaredependencies.org/bundles/npm/predicate-cardinalities-component/^1.0.0/components/": "dist/components/",
"https://linkedsoftwaredependencies.org/bundles/npm/predicate-cardinalities-component/^1.0.0/config/": "config/",
"https://linkedsoftwaredependencies.org/bundles/npm/predicate-cardinalities-component/^1.0.0/dist/": "dist/"
},
"scripts": {
"start": "community-solid-server -c predicate-cardinalities-file.json -f .data -m .",
"build": "npm run build:ts && npm run build:components",
"build:components": "componentsjs-generator -s src -c dist/components -i .componentsignore -r predicate-cardinalities",
"build:ts": "tsc",
"prepare": "npm run build",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/CommunitySolidServer/predicate-cardinalities-component.git"
},
"author": "Ieben Smessaert",
"license": "MIT",
"bugs": {
"url": "https://github.com/CommunitySolidServer/predicate-cardinalities-component/issues"
},
"homepage": "https://github.com/CommunitySolidServer/predicate-cardinalities-component#readme",
"files": [
"dist",
"config"
],
"dependencies": {
"@rdfjs/types": "^1.1.0",
"@solid/community-server": "^6.0.2",
"rdf-string": "^1.6.3"
},
"devDependencies": {
"@tsconfig/node14": "^1.0.3",
"@types/jest": "^29.1.0",
"@types/node-fetch": "^2.6.2",
"componentsjs-generator": "^3.1.0",
"jest": "^29.1.1",
"node-fetch": "^2.6.7",
"ts-jest": "^29.0.3",
"typescript": "^4.7.4"
}
}