-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
85 lines (85 loc) · 2.05 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
{
"name": "@existdb/generator-exist",
"version": "1.0.0",
"description": "exist-db app boilerplate",
"homepage": "https://github.com/eXist-db/generator-exist#readme",
"bugs": "https://github.com/eXist-db/generator-exist/issues",
"engines": {
"node": ">=14.0.0"
},
"author": {
"name": "Duncan Paterson",
"email": "d.paterson@me.com",
"url": "https://github.com/duncdrum"
},
"publishConfig": {
"access": "public"
},
"license": "MIT",
"files": [
"generators"
],
"main": "generators/app/index.js",
"keywords": [
"exist",
"xml",
"xql",
"xquery",
"exist-db",
"prototype",
"yeoman-generator"
],
"devDependencies": {
"@babel/core": "^7.23.2",
"chai": "^4.3.10",
"chai-xml": "^0.4.1",
"eslint": "^8.52.0",
"eslint-config-standard": "^17.1.0",
"eslint-config-xo-space": "^0.34.0",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-mocha": "^10.2.0",
"eslint-plugin-n": "^16.2.0",
"eslint-plugin-promise": "^6.1.1",
"fs-extra": "^11.2.0",
"glob": "^10.3.10",
"mocha": "^10.2.0",
"restify": "^11.1.0",
"semantic-release": "^22.0.5",
"stylelint": "^16.0.1",
"stylelint-config-standard": "^35.0.0",
"supertest": "^6.3.3",
"xmldoc": "^1.3.0",
"yeoman-assert": "^3.1.1",
"yeoman-test": "^6.3.0"
},
"dependencies": {
"chalk": "^4.1.2",
"generator-license": "^5.6.0",
"gulp-pretty-data": "^0.1.2",
"gulp-stripbom": "^1.0.5",
"yeoman-environment": "^3.19.3",
"yeoman-generator": "^5.9.0",
"yosay": "^2.0.2"
},
"scripts": {
"test": "mocha --recursive --exit && eslint --fix generators/app/**/*.js test/*.js *.js && stylelint --fix 'generators/app/templates/styles/exist-2.2.css'"
},
"eslintConfig": {
"plugins": [
"mocha"
],
"extends": "standard",
"env": {
"mocha": true,
"node": true
}
},
"release": {
"branches": "main"
},
"repository": {
"type": "git",
"url": "https://github.com/eXist-db/generator-exist.git",
"license": "MIT"
}
}