-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
62 lines (62 loc) · 1.53 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
{
"name": "@justeat/f-toggle",
"description": "Fozzie vanilla JS toggle library.",
"version": "2.0.0",
"main": "dist/index.js",
"files": [
"dist"
],
"homepage": "https://github.com/justeat/f-toggle",
"contributors": [
"Github contributors <https://github.com/justeat/f-toggle/graphs/contributors>"
],
"repository": {
"type": "git",
"url": "[email protected]:justeat/f-toggle.git"
},
"bugs": {
"url": "https://github.com/justeat/f-toggle/issues"
},
"license": "Apache-2.0",
"engines": {
"node": ">=4.0.0"
},
"dependencies": {
"@justeat/f-dom": "0.4.0",
"closest": "0.0.1",
"lite-ready": "1.0.4"
},
"devDependencies": {
"@justeat/gulp-build-fozzie": "7.20.0",
"babel-cli": "6.26.0",
"babel-plugin-transform-object-rest-spread": "6.26.0",
"babel-preset-env": "1.7.0",
"concurrently": "3.6.1",
"coveralls": "3.0.2",
"danger": "3.8.6",
"gulp": "3.9.1",
"js-test-buddy": "0.1.0"
},
"keywords": [
"fozzie"
],
"scripts": {
"prepare": "concurrently -n \"lint,compile,test\" -c \"blue,yellow,green\" --kill-others-on-fail \"yarn lint\" \"yarn compile\" \"yarn test\"",
"lint": "gulp scripts:lint",
"compile": "babel -d dist src",
"test": "gulp scripts:test",
"test:cover": "gulp scripts:test:coverage",
"test:cover:CI": "cat coverage/lcov.info | coveralls"
},
"browserslist": [
"> 5%",
"last 2 versions",
"Safari >= 8",
"not ie 10"
],
"jest": {
"collectCoverageFrom": [
"src/**/*.js"
]
}
}