-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
88 lines (88 loc) · 2.62 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
{
"name": "@sib-swiss/sparql",
"version": "0.2.4",
"private": true,
"type": "module",
"workspaces": [
"packages/*"
],
"description": "Web components for accessing SPARQL endpoints.",
"license": "MIT",
"author": {
"name": "Vincent Emonet",
"email": "[email protected]"
},
"scripts": {
"build": "npm run build:overview && npm run build:editor && npm run build:demo",
"dev": "npm run build:overview && npm run dev:editor",
"build:editor": "npm run build -w packages/sparql-editor",
"dev:editor": "npm run dev -w packages/sparql-editor",
"build:overview": "npm run build -w packages/sparql-overview",
"dev:overview": "npm run dev -w packages/sparql-overview",
"build:demo": "npm run build -w packages/demo",
"dev:demo": "npm run build:editor && npm run dev -w packages/demo",
"preview:demo": "npm run build && npm run preview -w packages/demo",
"fmt": "prettier --write . && eslint \"packages/**/*.{ts,tsx,html,json}\" --fix",
"lint": "prettier --check . && eslint \"packages/**/*.{ts,tsx,html,json}\"",
"test": "npm run lint && npm test -w packages/sparql-editor",
"upgrade": "npx npm-check-updates -u && npm install",
"prepare": "husky",
"version": "npm run lint && npm run build && auto-changelog -p && git add CHANGELOG.md && npm publish -w packages/sparql-editor",
"postversion": "git push origin v$(npm pkg get version | tr -d \\\")"
},
"devDependencies": {
"@eslint/js": "^9.15.0",
"@rollup/plugin-typescript": "^12.1.1",
"@testing-library/dom": "^10.4.0",
"@testing-library/jest-dom": "^6.6.3",
"@types/eslint__js": "^8.42.3",
"@types/node": "^22.9.1",
"@types/sparqljs": "^3.1.12",
"auto-changelog": "^2.5.0",
"eslint": "^9.15.0",
"husky": "^9.1.7",
"jsdom": "^25.0.1",
"lint-staged": "^15.2.10",
"prettier": "^3.3.3",
"tslib": "^2.8.1",
"typescript": "^5.6.3",
"typescript-eslint": "^8.15.0",
"vite": "^5.4.11",
"vitest": "^2.1.5"
},
"prettier": {
"semi": true,
"tabWidth": 2,
"singleQuote": false,
"bracketSpacing": false,
"arrowParens": "avoid",
"useTabs": false,
"printWidth": 120
},
"lint-staged": {
"*.{js,jsx,ts,tsx,json,css,md,html}": [
"prettier --write",
"eslint --fix"
]
},
"auto-changelog": {
"unreleased": false,
"commitLimit": false
},
"keywords": [
"SPARQL",
"editor",
"YASGUI",
"query",
"semantic web",
"RDF",
"Linked Data"
],
"repository": {
"type": "git",
"url": "https://github.com/sib-swiss/sparql-editor.git"
},
"publishConfig": {
"access": "public"
}
}