-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
42 lines (42 loc) · 1.14 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
{
"name": "@justeat/f-serviceworker",
"description": "Script for registering the service worker",
"version": "1.0.1",
"main": "dist/index.js",
"files": [
"dist"
],
"homepage": "https://github.com/justeat/f-serviceworker",
"contributors": [
"Github contributors <https://github.com/justeat/f-serviceworker/graphs/contributors>"
],
"repository": {
"type": "git",
"url": "[email protected]:justeat/f-serviceworker.git"
},
"bugs": {
"url": "https://github.com/justeat/f-serviceworker/issues"
},
"license": "Apache-2.0",
"scripts": {
"prepare": "concurrently --names \"lint,compile\" --prefix-colors \"blue,yellow\" --kill-others-on-fail \"yarn lint\" \"yarn compile\"",
"lint": "eslint src/**/*.js --fix",
"compile": "babel -d dist src"
},
"devDependencies": {
"@justeat/eslint-config-fozzie": "2.0.1",
"babel-cli": "6.26.0",
"babel-minify": "0.4.3",
"babel-preset-env": "1.7.0",
"concurrently": "3.6.1",
"danger": "3.8.6",
"eslint": "5.4.0",
"eslint-plugin-import": "2.14.0"
},
"browserslist": [
"> 5%",
"last 2 versions",
"Safari >= 8",
"not ie 10"
]
}