forked from mdn/interactive-examples
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.51 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
{
"name": "interactive-examples",
"version": "1.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",
"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",
"lint:js": "eslint ./live-examples/js-examples",
"lint:js:fix": "eslint --fix ./live-examples/js-examples",
"test": "yarn lint:js"
},
"keywords": [
"javascript",
"css",
"nodejs",
"page-generator",
"mdn",
"mozilla"
],
"devDependencies": {
"@babel/core": "^7.17.10",
"@babel/eslint-parser": "^7.17.0",
"ajv": "8.11.0",
"chokidar-cli": "3.0.0",
"eslint": "8.15.0",
"http-server": "14.1.0",
"mdn-bob": "2.2.0",
"npm-run-all": "4.1.5",
"prettier": "2.6.2",
"prettier-eslint": "14.0.3",
"prettier-stylelint": "0.4.2",
"stylelint": "14.8.2"
}
}