-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
68 lines (68 loc) · 2.08 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
67
68
{
"name": "@solid-data-modules/contacts-rdflib",
"version": "0.7.0",
"description": "A library to manage address books and contacts in Solid Pods based on rdflib.js",
"type": "module",
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"build:doc": "typedoc src/index.ts --out ../gh-pages/contacts-rdflib-api",
"test": "jest",
"lint": "eslint ./src/** ./examples/**",
"test:e2e": "jest --config jest.e2e.config.ts",
"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",
"serve:doc": "serve ../gh-pages",
"doc": "npm run build:doc && npm run serve:doc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/solid-contrib/data-modules.git"
},
"keywords": [
"solid",
"data-modules",
"contacts"
],
"author": {
"name": "Angelo Veltens",
"email": "[email protected]",
"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",
"files": [
"dist"
],
"peerDependencies": {
"rdflib": "^2.2.35"
},
"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.16.0",
"@typescript-eslint/parser": "^7.16.0",
"eslint": "^8.57.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-require-extensions": "^0.1.3",
"jest": "^29.7.0",
"jest-when": "^3.6.0",
"mashlib": "^1.8.11",
"prettier": "^3.3.2",
"serve": "^14.2.3",
"ts-jest": "^29.2.1",
"ts-node": "^10.9.2",
"typedoc": "^0.26.4",
"typescript": "^5.5.3"
},
"dependencies": {
"@solid-data-modules/rdflib-utils": "^0.2.0"
}
}