-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
109 lines (109 loc) · 2.74 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
{
"name": "mdn-bob",
"version": "2.2.1",
"description": "Builder of Bits aka The MDN Web Docs interactive examples, example builder",
"author": "Mozilla",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/mdn/bob.git"
},
"bugs": {
"url": "https://github.com/mdn/bob/issues"
},
"homepage": "https://github.com/mdn/bob#readme",
"bin": {
"mdn-bob": "./lib/mdn-bob.js"
},
"engines": {
"node": ">=12.0.0"
},
"main": "./lib/mdn-bob.js",
"bundlesize": [
{
"path": "./docs/css/codemirror-*.css",
"maxSize": "3 kB"
},
{
"path": "./docs/css/css-examples-libs-*.css",
"maxSize": "4 kB"
},
{
"path": "./docs/css/editor-css.css",
"maxSize": "4 kB"
},
{
"path": "./docs/css/editor-js.css",
"maxSize": "1 kB"
},
{
"path": "./docs/css/editor-tabbed.css",
"maxSize": "33 kB"
},
{
"path": "./docs/js/codemirror-*.js",
"maxSize": "75 kB"
},
{
"path": "./docs/js/css-examples-libs-*.js",
"maxSize": "8 kB"
},
{
"path": "./docs/js/editor-css.js",
"maxSize": "4 kB"
},
{
"path": "./docs/js/editor-js.js",
"maxSize": "4 kB"
},
{
"path": "./docs/js/editor-tabbed.js",
"maxSize": "33 kB"
}
],
"scripts": {
"build": "node ./lib/mdn-bob.js",
"start": "npm-run-all build start-server",
"start-server": "http-server -p 4444 ./docs",
"test": "jest",
"perf": "bundlesize"
},
"jest": {
"preset": "jest-puppeteer"
},
"keywords": [
"javascript",
"nodejs",
"page-generator",
"mdn",
"mozilla"
],
"devDependencies": {
"bundlesize": "0.18.1",
"eslint": "^8.2.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.25.3",
"http-server": "14.1.0",
"jest": "28.1.0",
"jest-puppeteer": "6.1.0",
"npm-run-all": "4.1.5",
"prettier": "^2.4.1",
"prettier-eslint": "15.0.1",
"puppeteer": "13.7.0"
},
"dependencies": {
"browserify": "17.0.0",
"clean-css": "5.3.0",
"codemirror": "5.65.5",
"cosmiconfig": "7.0.1",
"fs-extra": "10.1.0",
"glob": "8.0.3",
"node-dir": "0.1.17",
"uglify-es": "3.3.9",
"wabt": "^1.0.29"
},
"resolutions": {
"lodash": ">=4.17.5",
"underscore.string": ">=3.3.5"
}
}