forked from internetarchive/openlibrary
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.27 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
{
"name": "openlibrary",
"version": "1.0.0",
"repository": "github:internetarchive:openlibrary",
"license": "AGPL-3.0",
"scripts": {
"build-assets": "make js && make css",
"check-bundles": "npm run build-assets && bundlesize",
"lint:fix": "stylelint --syntax less --fix static/css/",
"test": "npm run check-bundles && stylelint --syntax less static/css/"
},
"bundlesize": [
{
"path": "static/build/vendor.js",
"maxSize": "135.57KB"
},
{
"path": "static/build/vendor-v2.js",
"maxSize": "183.8KB"
},
{
"path": "static/build/all.js",
"maxSize": "32.3KB"
},
{
"path": "static/build/page-admin.css",
"maxSize": "24.8KB"
},
{
"path": "static/build/page-edit.css",
"maxSize": "25KB"
},
{
"path": "static/build/page-form.css",
"maxSize": "25.0KB"
},
{
"path": "static/build/page-home.css",
"maxSize": "4.1KB"
},
{
"path": "static/build/page-plain.css",
"maxSize": "25.1KB"
},
{
"path": "static/build/page-user.css",
"maxSize": "24.9KB"
}
],
"devDependencies": {
"bundlesize": "^0.17.0",
"less": "^3.8.1",
"stylelint": "^9.5.0",
"stylelint-declaration-use-variable": "^1.7.0"
}
}