-
Notifications
You must be signed in to change notification settings - Fork 180
/
package.json
48 lines (48 loc) · 1.35 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
{
"name": "zen-audio-player",
"version": "1.1.0",
"description": "Listen to YouTube videos, without the distracting visuals.",
"main": "",
"scripts": {
"lint:js": "eslint js/*.js",
"lint:tests": "eslint test/*.js",
"lint:html": "htmlhint index.html",
"lint:css": "csslint --format=compact --warnings=box-model,ids css/",
"stylelint:css": "stylelint css/*.css",
"lint": "npm run lint:js && npm run lint:html && npm run lint:css && npm run lint:tests",
"pretest": "npm run stylelint:css && npm run lint",
"test": "mocha",
"fix": "eslint js/everything.js test/*.js --fix",
"start": "http-server --cors -o -a localhost",
"snyk-monitor": "snyk monitor"
},
"repository": {
"type": "git",
"url": "https://github.com/zen-audio-player/zen-audio-player.github.io.git"
},
"keywords": [
"youtube",
"audio",
"zen",
"player"
],
"author": "Shakeel Mohamed",
"license": "MIT",
"bugs": {
"url": "https://github.com/zen-audio-player/zen-audio-player.github.io/issues"
},
"homepage": "https://zen-audio-player.github.io",
"devDependencies": {
"csslint": "^1.0.5",
"eslint": "^5.4.0",
"htmlhint": "^1.1.4",
"http-server": "^14.1.1",
"mocha": "^10.2.0",
"puppeteer": "^21.1.0",
"snyk": "^1.996.0",
"stylelint": "^13.13.1"
},
"engines": {
"node": ">=16.x"
}
}