-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
92 lines (92 loc) · 2.28 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
{
"name": "@justeat/f-header",
"description": "Fozzie Header – Header Component for Just Eat projects",
"version": "1.37.1",
"main": "dist/js/index.js",
"files": [
"dist",
"src/img",
"src/scss",
"src/templates"
],
"homepage": "https://github.com/justeat/f-header",
"contributors": [
"Github contributors <https://github.com/justeat/f-header/graphs/contributors>"
],
"repository": {
"type": "git",
"url": "git@github.com:justeat/f-header.git"
},
"bugs": {
"url": "https://github.com/justeat/f-header/issues"
},
"license": "Apache-2.0",
"engines": {
"node": ">=12.0.0"
},
"dependencies": {
"@justeat/f-logger": "0.8.1",
"@justeat/fozzie": "10.10.1",
"lite-ready": "1.0.4"
},
"peerDependencies": {
"@justeat/f-icons": "1.29.1"
},
"devDependencies": {
"@justeat/gulp-build-fozzie": "11.0.1",
"concurrently": "7.5.0",
"coveralls": "3.1.1",
"danger": "11.1.4",
"gulp": "4.0.2",
"jest-fetch-mock": "1.6.6",
"jest-localstorage-mock": "2.2.0",
"js-test-buddy": "0.2.0",
"rimraf": "3.0.2",
"sass": "1.55.0"
},
"resolutions": {
"babel-core": "7.0.0-bridge.0"
},
"keywords": [
"fozzie"
],
"scripts": {
"prepare": "concurrently -n \"lint,compile,test\" -c \"blue,yellow,green\" \"yarn lint\" \"yarn compile\" \"yarn test\" --kill-others-on-fail",
"build:css": "sass --load-path=node_modules/ src/scss/index.scss:dist/css/f-header.css",
"clean": "rimraf dist",
"lint": "yarn run lint:style && yarn run lint:scripts",
"lint:style": "gulp scss:lint --prod",
"lint:scripts": "gulp scripts:lint --prod",
"compile": "yarn clean && babel -d dist src --ignore test.js",
"test": "gulp scripts:test",
"test:cover:ci": "gulp scripts:test:coverage && cat coverage/lcov.info | coveralls"
},
"stylelint": {
"extends": "@justeat/stylelint-config-fozzie"
},
"browserslist": [
"> 5%",
"last 2 versions",
"Safari >= 8",
"not ie 10"
],
"jest": {
"setupFilesAfterEnv": [
"./jest.setup.js"
],
"collectCoverageFrom": [
"src/js/**/*.{js,jsx}"
]
},
"assets": [
{
"root": "src/",
"glob": "img/**/*"
},
{
"root": "src/",
"glob": "templates/**/*",
"dest": "./"
}
]
}