forked from mdn/interactive-examples
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.52 KB
/
Copy pathpackage.json
File metadata and controls
47 lines (47 loc) · 1.52 KB
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.2",
"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.19.0",
"@babel/eslint-parser": "^7.18.9",
"ajv": "^8.11.0",
"chokidar-cli": "^3.0.0",
"eslint": "^8.23.0",
"http-server": "^14.1.1",
"mdn-bob": "^2.2.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.7.1",
"prettier-eslint": "^15.0.1",
"prettier-stylelint": "^0.4.2",
"stylelint": "^14.11.0"
}
}