forked from mdn/interactive-examples
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.66 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": "2.0.0",
"description": "Interactive code examples embedded on MDN",
"author": "Mozilla",
"license": "MPL-2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/mdn/interactive-examples.git"
},
"bugs": {
"url": "https://github.com/mdn/interactive-examples/issues"
},
"homepage": "https://github.com/mdn/interactive-examples#readme",
"main": "index.js",
"scripts": {
"build": "mdn-bob",
"build:pages": "mdn-bob --skip-webpack",
"fix:css": "npm run 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 \"./live-examples/**\" -c \"npm run build:pages\" --initial --silent",
"start": "npm-run-all --parallel start-watch start-server",
"test": "npm run lint:js"
},
"keywords": [
"javascript",
"css",
"nodejs",
"page-generator",
"mdn",
"mozilla"
],
"engines": {
"node": ">=18.0.0"
},
"devDependencies": {
"@babel/core": "^7.22.8",
"@babel/eslint-parser": "^7.22.7",
"@mdn/bob": "^3.3.0",
"chokidar-cli": "^3.0.0",
"eslint": "^8.44.0",
"http-server": "^14.1.1",
"npm-run-all": "^4.1.5",
"prettier": "^2.8.8",
"prettier-eslint": "^15.0.1",
"stylelint": "^14.16.1",
"stylelint-config-prettier": "^9.0.5",
"stylelint-prettier": "^3.0.0"
}
}