-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 1.4 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
{
"author": "Andy Bunce <[email protected]> (https://github.com/apb2006)",
"name": "@quodatum/xqlint",
"description": "XQuery Quality Checker",
"version": "0.6.2",
"keywords": [
"xquery",
"xml",
"basex",
"linter"
],
"homepage": "https://github.com/Quodatum/xqlint",
"bugs": {
"url": "https://github.com/Quodatum/xqlint/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Quodatum/xqlint.git"
},
"main": "./lib/xqlint.js",
"types": "./lib/xqlint.d.ts",
"xqlint": {
"xqlint": "./bin/xqlint"
},
"dependencies": {
"@quodatum/xq-catalogs": "0.1.2",
"colors": "1.4.0",
"commander": "~11.1.0",
"final-fs": "~1.6.1"
},
"devDependencies": {
"axios": "^1.5.1",
"browserify": "^17.0.0",
"form-data": "^4.0.0",
"grunt": "^1.5.3",
"grunt-browserify": "6.0.0",
"grunt-contrib-jshint": "3.2.0",
"grunt-vows": "~0.4.1",
"matchdep": "~2.0.0",
"time-grunt": "^2.0.0",
"vows": "^0.8.3"
},
"engines": {
"node": ">16.0.0"
},
"contributors": [
"Andy Bunce <[email protected]>",
"William Candillon <[email protected]>"
],
"scripts": {
"test": "grunt vows",
"test1": "grunt vows:one",
"rex": "node scripts/rex.js"
},
"directories": {
"lib": "lib",
"test": "test"
},
"files": [
"lib/"
],
"license": "Apache-2.0",
"bin": {
"xqlint": "bin/xqlint"
}
}