-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.39 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.39 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
55
56
57
58
{
"name": "source-pane",
"version": "3.0.1",
"description": "Solid-compatible Panes: Source editor",
"main": "src/sourcePane.js",
"files": [
"/src",
"README.md",
"LICENSE"
],
"scripts": {
"build": "echo nothing to build",
"lint": "eslint",
"lint-fix": "eslint --fix",
"test": "jest --no-coverage",
"test-coverage": "jest --coverage --collectCoverageFrom=src/**/*.[jt]s",
"prepublishOnly": "npm run test && npm run build",
"preversion": "npm run lint && npm test",
"postpublish": "git push origin main --follow-tags"
},
"repository": {
"type": "git",
"url": "git+https://github.com/SolidOS/source-pane.git"
},
"keywords": [
"solid",
"source",
"decentralized",
"web",
"rdf",
"ldp",
"linked",
"pane",
"app",
"data"
],
"author": "Tim Berners-Lee <timbl@mit.edu>",
"license": "MIT",
"bugs": {
"url": "https://github.com/SolidOS/source-pane/issues"
},
"homepage": "https://github.com/SolidOS/source-pane",
"peerDependencies": {
"rdflib": "^2.3.5",
"solid-logic": "^4.0.2",
"solid-ui": "^3.0.3"
},
"devDependencies": {
"@babel/eslint-parser": "^7.28.6",
"@testing-library/dom": "^10.4.1",
"eslint": "^9.39.2",
"jest": "^30.2.0",
"jest-environment-jsdom": "^30.2.0",
"jest-fetch-mock": "^3.0.3",
"solid-logic": "^4.0.2",
"solid-ui": "^3.0.3"
}
}