-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.68 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
{
"name": "web-music-documentation",
"version": "0.0.0",
"engines": {
"node": ">=20.0.0 <=22.12.x"
},
"description": "Web Music Documentation for Web Audio API, Web MIDI API ... etc",
"main": "docs/index.html",
"scripts": {
"clean": "",
"lint:html": "markuplint 'docs/**/*.html'",
"lint:css": "stylelint 'docs/**/*.css'",
"lint": "run-p lint:html lint:css",
"fix:html": "markuplint --fix 'docs/**/*.html'",
"fix:css": "stylelint --fix 'docs/**/*.css'",
"fix": "run-p fix:html fix:css",
"format:check": "prettier --check 'docs/**/*.{html,css,js}'",
"format": "prettier --write 'docs/**/*.{html,css,js}'",
"dev": "node server.js",
"build": "",
"release:patch": "npm version patch --message 'v%s' && git push && git push origin --tags",
"release:minor": "npm version minor --message 'v%s' && git push && git push origin --tags",
"release:major": "npm version major --message 'v%s' && git push && git push origin --tags"
},
"repository": {
"type": "git",
"url": "https://github.com/Korilakkuma/Web-Music-Documentation.git"
},
"keywords": [
"Web Music",
"Web Audio API",
"Web Audio"
],
"author": "Korilakkuma <rilakkuma.san.xjapan@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/Korilakkuma/Web-Music-Documentation/issues"
},
"homepage": "https://korilakkuma.github.io/Web-Music-Documentation/",
"devDependencies": {
"connect": "^3.7.0",
"markuplint": "^4.11.4",
"npm-run-all": "^4.1.5",
"prettier": "^3.4.2",
"serve-static": "^1.16.2",
"stylelint": "^16.14.0",
"stylelint-config-recess-order": "^6.0.0",
"stylelint-config-standard": "^37.0.0"
}
}