-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
53 lines (53 loc) · 1.72 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
{
"name": "interactive-examples",
"version": "0.0.0",
"description": "Interactive code examples embedded on webdoky.org",
"author": "WebDoky",
"license": "MPL-2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/webdoky/interactive-examples.git"
},
"bugs": {
"url": "https://github.com/webdoky/interactive-examples/issues"
},
"homepage": "https://github.com/webdoky/interactive-examples#readme",
"main": "index.js",
"scripts": {
"build": "mdn-bob",
"fix:css": "yarn lint:css --fix",
"fix:js": "eslint --fix ./live-examples/js-examples",
"lint:css": "stylelint \"**/*.css\"",
"lint:js": "eslint ./live-examples/js-examples",
"start-server": "http-server -p 9090 ./docs",
"start-watch": "chokidar '**/{*.js,*.css,*.html,*.json}' -i 'package.json' -i 'docs/**' -i 'node_modules/**' -i 'js/editor-*.js' -c 'yarn run build' --initial --silent",
"start": "npm-run-all --parallel start-watch start-server",
"test": "yarn lint:js"
},
"keywords": [
"javascript",
"css",
"nodejs",
"page-generator",
"mdn",
"mozilla",
"webdoky"
],
"engines": {
"node": "^16.0.0 || >=18.0.0"
},
"devDependencies": {
"@babel/core": "^7.21.4",
"@babel/eslint-parser": "^7.21.3",
"chokidar-cli": "^3.0.0",
"eslint": "^8.39.0",
"http-server": "^14.1.1",
"mdn-bob": "^2.2.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.8.8",
"prettier-eslint": "^15.0.1",
"stylelint": "^15.10.1",
"stylelint-config-prettier": "^9.0.5",
"stylelint-prettier": "^3.0.0"
}
}