-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
60 lines (60 loc) · 1.3 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": "source-pane",
"version": "2.2.27",
"description": "Solid-compatible Panes: Source editor",
"main": "src/sourcePane.js",
"scripts": {
"build": "echo nothing to build",
"lint": "eslint 'src/*.js'",
"lint-fix": "eslint 'src/*.js' --fix",
"test": "jest",
"prepublishOnly": "npm run lint && npm run test",
"postpublish": "git push origin main --follow-tags"
},
"repository": {
"type": "git",
"url": "https://github.com/solid/source-pane"
},
"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/solid/source-pane/issues"
},
"homepage": "https://github.com/solid/source-pane",
"dependencies": {
"solid-ui": "^2.4.33"
},
"devDependencies": {
"@babel/eslint-parser": "^7.24.1",
"@testing-library/dom": "^9.3.4",
"eslint": "^8.57.0",
"husky": "^8.0.3",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jest-fetch-mock": "^3.0.3",
"lint-staged": "^15.2.2"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"pre-push": "npm test"
}
},
"lint-staged": {
"*.js": [
"eslint"
]
}
}