-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.26 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
{
"name": "pane-registry",
"version": "2.4.27",
"description": "Solid-compatible Panes: Pane Registry",
"main": "./paneRegistry.js",
"types": "./index.d.ts",
"scripts": {
"build": "echo nothing to build",
"lint": "eslint 'paneRegistry.js'",
"lint-fix": "eslint 'paneRegistry.js' --fix",
"test": "standard && npm run lint",
"prepublishOnly": "npm test",
"postversion": "git push origin main --follow-tags"
},
"repository": {
"type": "git",
"url": "https://github.com/solidos/pane-registry"
},
"keywords": [
"solid",
"chat",
"message",
"discusssion",
"decentralized",
"web",
"rdf",
"ldp",
"linked",
"pane",
"app",
"data"
],
"author": "Tim Berners-Lee <timbl@mit.edu>",
"license": "MIT",
"bugs": {
"url": "https://github.com/solidos/chat-pane/issues"
},
"homepage": "https://github.com/solidos/chat-pane",
"dependencies": {
"rdflib": "^2.2.36",
"solid-logic": "^3.0.8"
},
"devDependencies": {
"eslint": "^8.57.0",
"husky": "^8.0.3",
"lint-staged": "^13.3.0",
"standard": "^17.1.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"pre-push": "npm test"
}
},
"lint-staged": {
"*.js": [
"eslint"
]
}
}