-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
92 lines (92 loc) · 2.75 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/gulp-build-fozzie",
"version": "4.4.0",
"description": "Gulp build tasks for use across Fozzie modules",
"main": "index.js",
"author": "Damian Mullins <[email protected]> (http://www.damianmullins.com)",
"contributors": [
"Github contributors <https://github.com/justeat/gulp-build-fozzie/graphs/contributors>"
],
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/justeat/gulp-build-fozzie.git"
},
"bugs": {
"url": "https://github.com/justeat/gulp-build-fozzie/issues"
},
"homepage": "https://github.com/justeat/gulp-build-fozzie#readme",
"scripts": {
"prepare": "yarn run lint && yarn test",
"test": "jest",
"test:cover": "yarn run test -- --coverage",
"test:cover:CI": "cat coverage/lcov.info | coveralls",
"lint": "eslint **/*.js",
"release-patch": "release-it patch --non-interactive -p",
"release-minor": "release-it minor --non-interactive -p",
"release-major": "release-it major --non-interactive -p"
},
"dependencies": {
"@justeat/eslint-config-fozzie": "^1.2.0",
"@justeat/stylelint-config-fozzie": "^1.1.0",
"assemble": "^0.24.3",
"autoprefixer": "^7.1.2",
"babelify": "^7.3.0",
"browser-sync": "^2.18.13",
"browserify": "^14.3.0",
"cssnano": "^3.10.0",
"del": "^3.0.0",
"eslint": "^4.3.0",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-jest": "^20.0.0",
"exorcist": "^0.4.0",
"eyeglass": "^1.2.1",
"filesizegzip": "^2.0.0",
"glob": "^7.1.2",
"gulp": "^3.9.1",
"gulp-cached": "^1.1.1",
"gulp-changed": "^3.1.0",
"gulp-debug": "^3.1.0",
"gulp-eslint": "^4.0.0",
"gulp-extname": "^0.2.2",
"gulp-filenames": "^4.0.1",
"gulp-if": "^2.0.2",
"gulp-imagemin": "^3.2.0",
"gulp-newer": "^1.3.0",
"gulp-plumber": "^1.1.0",
"gulp-postcss": "^7.0.0",
"gulp-rename": "^1.2.2",
"gulp-rev": "^8.0.0",
"gulp-sass": "^3.1.0",
"gulp-size": "^2.1.0",
"gulp-sourcemaps": "^2.6.0",
"gulp-strip-debug": "^1.1.0",
"gulp-svgmin": "^1.2.4",
"gulp-svgstore": "^6.1.0",
"gulp-tap": "^1.0.1",
"gulp-uglify": "^3.0.0",
"gulp-util": "^3.0.8",
"handlebars-helpers": "^0.9.6",
"helper-markdown": "^1.0.0",
"helper-md": "^0.2.2",
"jest-cli": "^20.0.0",
"npm-assets": "^0.1.2",
"postcss-assets": "^4.2.0",
"postcss-reporter": "^5.0.0",
"postcss-scss": "^1.0.2",
"require-dir": "^0.3.1",
"run-sequence": "^2.1.0",
"stylelint": "^8.0.0",
"sw-precache": "^5.1.1",
"vinyl-buffer": "^1.0.0",
"vinyl-source-stream": "^1.1.0"
},
"devDependencies": {
"coveralls": "^2.13.1",
"danger": "^1.1.0",
"release-it": "^2.8.2"
},
"peerDependencies": {
"gulp": "^3.9.1"
}
}