This repository was archived by the owner on Nov 29, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathpackage.json
More file actions
116 lines (116 loc) · 4.83 KB
/
Copy pathpackage.json
File metadata and controls
116 lines (116 loc) · 4.83 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
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
110
111
112
113
114
115
116
{
"name": "@justeat/fozzie",
"title": "Fozzie – Just Eat UI Web Framework",
"description": "UI Web Framework for the Just Eat Global Platform",
"version": "10.7.1",
"main": "dist/js/index.js",
"files": [
"dist/js",
"dist/css",
"src/scss",
"src/fonts"
],
"homepage": "https://github.com/justeat/fozzie",
"contributors": [
"Ashley Nolan <ashley.nolan@just-eat.com> (https://ashleynolan.co.uk)",
"Jamie Maguire <jamie.maguire@justeattakeaway.com> (https://www.jamieomaguire.com)",
"Damian Mullins <damian.mullins@just-eat.com> (http://www.damianmullins.com)",
"Github contributors <https://github.com/justeat/fozzie/graphs/contributors>"
],
"authors": [
{
"name": "Contributors",
"url": "https://github.com/justeat/fozzie/graphs/contributors"
}
],
"repository": {
"type": "git",
"url": "git@github.com:justeat/fozzie.git"
},
"bugs": {
"url": "https://github.com/justeat/fozzie/issues"
},
"license": "Apache-2.0",
"engines": {
"node": "^14 || ^16"
},
"dependencies": {
"@justeat/pie-design-tokens": "3.0.0",
"include-media": "eduardoboucas/include-media#2.0-release"
},
"devDependencies": {
"@babel/cli": "7.18.10",
"@babel/core": "7.19.1",
"@babel/eslint-parser": "7.19.1",
"@babel/preset-env": "7.19.1",
"@justeat/browserslist-config-fozzie": "2.0.0",
"@justeat/eslint-config-fozzie": "5.1.0",
"@justeat/f-dom": "1.1.0",
"@justeat/f-logger": "0.8.1",
"@justeat/js-test-buddy": "0.4.1",
"@justeat/stylelint-config-fozzie": "3.2.0",
"autoprefixer": "10.4.7",
"caniuse-lite": "1.0.30001409",
"concurrently": "7.4.0",
"coveralls": "3.1.1",
"cssnano": "5.1.13",
"danger": "11.1.2",
"eslint": "8.23.1",
"eslint-plugin-import": "2.26.0",
"fontfaceobserver": "2.3.0",
"glob": "8.0.3",
"jest": "29.0.3",
"jest-environment-jsdom": "^29.0.3",
"postcss": "8.4.16",
"postcss-cli": "10.0.0",
"sass": "1.55.0",
"sass-true": "6.1.0",
"stylelint": "14.12.1",
"stylelint-config-standard-scss": "5.0.0"
},
"resolutions": {
"babel-core": "7.0.0-bridge.0"
},
"keywords": [
"fozzie"
],
"scripts": {
"autoprefix:css": "yarn run autoprefix:typography && yarn run autoprefix:reset && yarn run autoprefix:utilities",
"autoprefix:reset": "postcss dist/css/fozzie-reset.css -o dist/css/fozzie-reset.css --use autoprefixer --map",
"autoprefix:typography": "postcss dist/css/fozzie-typography.css -o dist/css/fozzie-typography.css --use autoprefixer --map",
"autoprefix:utilities": "postcss dist/css/fozzie-utilities.css -o dist/css/fozzie-utilities.css --use autoprefixer --map",
"build:css": "yarn run build:typography && yarn run build:reset && yarn run build:utilities",
"build:css:minified": "yarn run build:typography:minified && yarn run build:reset:minified && yarn run build:utilities:minified",
"build:reset": "sass --load-path=node_modules/ src/scss/fozzie-reset.scss:dist/css/fozzie-reset.css",
"build:reset:minified": "postcss dist/css/fozzie-reset.css -o dist/css/fozzie-reset.min.css --use cssnano --no-map",
"build:typography": "sass --load-path=node_modules/ src/scss/fozzie-typography.scss:dist/css/fozzie-typography.css",
"build:typography:minified": "postcss dist/css/fozzie-typography.css -o dist/css/fozzie-typography.min.css --use cssnano --no-map",
"build:utilities": "sass --load-path=node_modules/ src/scss/fozzie-utilities.scss:dist/css/fozzie-utilities.css",
"build:utilities:minified": "postcss dist/css/fozzie-utilities.css -o dist/css/fozzie-utilities.min.css --use cssnano --no-map",
"compile": "babel -d dist src --ignore \"src/**/*.test.js\"",
"lint": "yarn run lint:css && yarn run lint:js",
"lint:css": "stylelint src/scss/**/*.scss",
"lint:js": "eslint --ext .js .",
"prepack": "concurrently -n \"lint,compile,test\" -c \"blue,yellow,green\" \"yarn lint\" \"yarn compile\" \"yarn test\" --kill-others-on-fail && yarn prepare:css",
"prepare:css": "yarn run build:css && yarn run autoprefix:css && yarn run build:css:minified && yarn test:css-dist",
"test": "concurrently -n \"test:js,test:scss\" -c \"cyan,magenta\" \"yarn test:js\" \"yarn test:scss\"",
"test:build": "sass --no-source-map --load-path=node_modules --style=compressed src/scss:dist/css",
"test:cover": "jest --collect-coverage",
"test:cover:CI": "cat coverage/lcov.info | coveralls",
"test:css-dist": "jest --config=src/test/css/jest.config.js ./src/test/css",
"test:js": "jest --config=jest.config.js ./src/js",
"test:scss": "jest --config=src/test/scss/jest.config.js ./src/test/scss"
},
"stylelint": {
"extends": "@justeat/stylelint-config-fozzie"
},
"browserslist": [
"extends @justeat/browserslist-config-fozzie"
],
"assets": [
{
"root": "src/",
"glob": "fonts/**/*"
}
]
}