forked from CommunitySolidServer/hello-world-component
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.77 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.77 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
{
"name": "httpsig-module",
"version": "6.0.0",
"description": "A minimal example of a repository containing an injectable Community Solid Server module",
"repository": "git@github.com:CommunitySolidServer/httpsig-module.git",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"lsd:module": "https://linkedsoftwaredependencies.org/bundles/npm/httpsig-module",
"lsd:components": "dist/components/components.jsonld",
"lsd:contexts": {
"https://linkedsoftwaredependencies.org/bundles/npm/httpsig-module/^6.0.0/components/context.jsonld": "dist/components/context.jsonld"
},
"lsd:importPaths": {
"https://linkedsoftwaredependencies.org/bundles/npm/httpsig-module/^6.0.0/components/": "dist/components/",
"https://linkedsoftwaredependencies.org/bundles/npm/httpsig-module/^6.0.0/config/": "config/",
"https://linkedsoftwaredependencies.org/bundles/npm/httpsig-module/^6.0.0/dist/": "dist/"
},
"scripts": {
"start": "community-solid-server -c httpsig-file.json -f .data -m .",
"start:seeded": "npm run start -- --seededPodConfigJson ./seed.json",
"build": "npm run build:ts && npm run build:components",
"build:components": "componentsjs-generator -s src -c dist/components -i .componentsignore -r httpsig",
"build:ts": "tsc",
"prepare": "npm run build",
"test": "jest",
"test:401": "curl http://localhost:3000/example/profile/card/ -v"
},
"files": [
"dist",
"config"
],
"dependencies": {
"@solid/community-server": "^6.0.0"
},
"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"
},
"license": "MIT"
}