-
-
Notifications
You must be signed in to change notification settings - Fork 32
/
package.json
47 lines (47 loc) · 1.14 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
{
"name": "exide",
"version": "3.5.3",
"description": "a web-based XQuery IDE",
"main": "main.js",
"directories": {
"doc": "docs"
},
"scripts": {
"build": "node scripts/build.js prepare && npm run xqlint && node scripts/build.js",
"build:dev": "node scripts/build.js prepare && npm run xqlint && node scripts/build.js --dev",
"clean": "node scripts/build.js clean",
"xqlint": "cd support/xqlint && node r.js -o build.js && cd ../..",
"cypress": "cypress run"
},
"repository": {
"type": "git",
"url": "git+https://github.com/eXist-db/eXide.git"
},
"keywords": [
"exist-db",
"xquery",
"ide"
],
"author": "Wolfgang Meier",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/eXist-db/eXide/issues"
},
"homepage": "https://github.com/eXist-db/eXide#readme",
"devDependencies": {
"chalk": "^4.1.2",
"command-line-args": "^5.2.1",
"cypress": "^9.7.0",
"esbuild": "^0.21.2",
"glob-stream": "^7.0.0",
"micro-fs": "^1.0.3",
"request": "^2.88.2"
},
"dependencies": {
"@ag-grid-community/core": "^26.2.1",
"@ag-grid-community/infinite-row-model": "^27.0.0"
},
"overrides": {
"glob-stream": "$glob-stream"
}
}