forked from mdn/interactive-examples
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.44 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": "2.0.0",
"description": "Interactive code exmaples 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",
"contributors:generate": "all-contributors generate",
"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 'npm run build' --initial --silent",
"start": "npm-run-all --parallel start-watch start-server"
},
"keywords": [
"javascript",
"css",
"nodejs",
"page-generator",
"mdn",
"mozilla"
],
"devDependencies": {
"ajv": "6.10.0",
"all-contributors-cli": "6.2.0",
"chokidar-cli": "1.2.2",
"eslint": "5.16.0",
"http-server": "0.11.1",
"mdn-bob": "1.1.26",
"npm-run-all": "4.1.5",
"prettier": "1.16.4",
"prettier-eslint": "8.8.2",
"prettier-stylelint": "0.4.2",
"stylelint": "9.10.1"
},
"dependencies": {
"npm": "^6.6.0"
}
}