-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
100 lines (100 loc) · 2.29 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
{
"name": "@justeat/f-footer",
"description": "Fozzie footer - Footer Component for Just Eat projects",
"version": "1.46.0",
"main": "dist/js/index.js",
"files": [
"dist",
"src/img",
"src/scss",
"src/templates"
],
"homepage": "https://github.com/justeat/f-footer",
"contributors": [
"Github contributors <https://github.com/justeat/f-footer/graphs/contributors>"
],
"repository": {
"type": "git",
"url": "[email protected]:justeat/f-footer.git"
},
"bugs": {
"url": "https://github.com/justeat/f-footer/issues"
},
"license": "Apache-2.0",
"engines": {
"node": ">=10.0.0"
},
"dependencies": {
"@justeat/fozzie": "6.0.0-beta.8",
"include-media": "1.4.9",
"lite-ready": "1.0.4",
"lodash.debounce": "4.0.8",
"qwery": "4.0.0"
},
"devDependencies": {
"@justeat/gulp-build-fozzie": "8.4.0",
"concurrently": "4.1.0",
"coveralls": "3.1.0",
"danger": "4.4.8",
"gulp": "3.9.1",
"jest": "24.8.0",
"js-test-buddy": "0.2.0"
},
"resolutions": {
"babel-core": "7.0.0-bridge.0",
"espree": "3.5.4"
},
"keywords": [
"fozzie",
"eyeglass-module"
],
"eyeglass": {
"name": "f-footer",
"sassDir": "src/scss",
"needs": "^1.1.2",
"exports": false
},
"scripts": {
"prepare": "concurrently -n \"lint,compile,test\" -c \"blue,yellow,green\" \"yarn lint\" \"yarn compile\" \"yarn test:cover\" --kill-others-on-fail",
"compile": "babel -d dist src",
"lint": "yarn run lint:css && yarn run lint:js",
"lint:css": "gulp scss:lint --prod",
"lint:js": "gulp scripts:lint --prod",
"test": "jest",
"test:cover": "jest --coverage",
"test:cover:ci": "cat coverage/lcov.info | coveralls"
},
"stylelint": {
"extends": "@justeat/stylelint-config-fozzie"
},
"browserslist": [
"> 5%",
"last 2 versions",
"Safari >= 8",
"not ie 10"
],
"assets": [
{
"root": "src/",
"glob": "img/**/*"
},
{
"root": "src/",
"glob": "templates/**/*",
"dest": "./"
}
],
"jest": {
"setupTestFrameworkScriptFile": "./test/setup.js",
"collectCoverageFrom": [
"src/js/**/*.js"
],
"roots": [
"src/",
"test/"
],
"testEnvironmentOptions": {
"url": "https://www.just-eat.co.uk"
}
}
}