-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
66 lines (66 loc) · 2 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
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "@solid-data-modules/bookmarks-rdflib",
"version": "0.3.0",
"description": "A library to manage bookmarks in Solid Pods based on rdflib.js",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"clean": "rm -rf dist/",
"build": "npm run clean && tsc",
"build:doc": "typedoc src/index.ts --out ../../gh-pages/bookmarks-rdflib-api --tsconfig ./tsconfig.json",
"serve:doc": "serve ../../gh-pages",
"test": "jest",
"test:e2e": "jest --config jest.e2e.config.ts",
"lint": "eslint ./src/** ./examples/**",
"pod": "community-solid-server --config ../dev-server/config/config-mashlib.json --seedConfig ../dev-server/seed.json --rootFilePath ../dev-server/data",
"pod:init": "cp -r ../dev-server/initial-data/* ../dev-server/data/",
"pod:clean": "rm -rf ../dev-server/data"
},
"files": [
"dist/**/*"
],
"repository": {
"type": "git",
"url": "git+https://github.com/solid-contrib/data-modules.git"
},
"keywords": [
"solid",
"data-modules",
"bookmarks"
],
"author": {
"name": "Angelo Veltens",
"email": "angelo.veltens@online.de",
"url": "https://angelo.veltens.org/profile/card#me"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/solid-contrib/data-modules/issues"
},
"homepage": "https://github.com/solid-contrib/data-modules#readme",
"peerDependencies": {
"rdflib": "2.x"
},
"devDependencies": {
"@faker-js/faker": "^8.4.1",
"@solid/community-server": "^7.1.0",
"@types/jest": "^29.5.12",
"@types/jest-when": "^3.5.5",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"eslint": "^8.57.0",
"eslint-plugin-require-extensions": "^0.1.3",
"jest": "^29.7.0",
"jest-when": "^3.6.0",
"mashlib": "^1.8.11",
"prettier": "^3.3.3",
"serve": "^14.2.3",
"ts-jest": "29.2.3",
"ts-node": "^10.9.2",
"typedoc": "^0.26.5",
"typescript": "^5.5.4"
},
"dependencies": {
"@solid-data-modules/rdflib-utils": "0.4.0"
}
}