-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
80 lines (80 loc) · 2.19 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
{
"name": "mariadb-mysql-kbs",
"repository": "williamdes/mariadb-mysql-kbs",
"version": "1.3.0",
"description": "An index of the MariaDB and MySQL Knowledge bases",
"homepage": "https://github.com/williamdes/mariadb-mysql-kbs#readme",
"readme": "https://github.com/williamdes/mariadb-mysql-kbs/blob/main/README.md",
"license": "MPL-2.0",
"bugs": {
"url": "https://github.com/williamdes/mariadb-mysql-kbs/issues",
"email": "[email protected]"
},
"keywords": [
"mariadb",
"mysql",
"dataset",
"kb",
"knowledge-base",
"json",
"library",
"mysql-knowledge-bases",
"mariadb-knowledge-bases",
"composer-package",
"npm-package"
],
"nyc": {
"exclude": [
"data",
"test",
"build",
"vendor",
"coverage",
".nyc_output",
"scripts/vendor"
],
"reporter": [
"text",
"text-summary"
]
},
"scripts": {
"changelog": "git cliff",
"changelog-file": "npm run --silent changelog > CHANGELOG.md",
"prettier": "prettier \"*/**/*.js\" --ignore-path ./.prettierignore --write",
"changelog-file-next": "npm run --silent changelog -- --bump > CHANGELOG.md",
"test": "nyc --all mocha --ui tdd",
"jshint": "jshint ./",
"report-coverage": "nyc report --reporter=text-lcov > coverage.lcov",
"sudo-bot-pr": "sudo-bot --env scripts/sudo-bot/.env --verbose"
},
"author": {
"email": "[email protected]",
"name": "William Desportes",
"url": "https://williamdes.eu"
},
"engines": {
"node": ">=14"
},
"dependencies": {},
"devDependencies": {
"chai": "^4",
"jshint": "^2.13.6",
"mocha": "^10.6.0",
"nyc": "^15.1.0",
"prettier": "^3.3.2"
},
"directories": {
"lib": "src",
"test": "test"
},
"prettier": {
"singleQuote": true,
"proseWrap": "never",
"trailingComma": "es5",
"printWidth": 120
},
"publishConfig": {
"access": "public"
}
}