This repository was archived by the owner on Mar 14, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.4 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.4 KB
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
{
"name": "dead-simple-countdown-widget",
"version": "2.0.0",
"main": "gulpfile.js",
"repository": "https://github.com/DaveLak/dead-simple-countdown-widget.git",
"author": "David Lakin <deadsimple@themoderndev.com>",
"license": "GPL-2.0-or-later",
"private": true,
"scripts": {
"clean": "gulp clean",
"lint": "gulp lint",
"lint-fix": "gulp lint --fix",
"watch": "gulp clean && gulp watch",
"build": "gulp clean && gulp",
"package": "gulp clean && gulp package --release"
},
"browserslist": [
"> 5%",
"last 2 versions",
"Firefox ESR"
],
"eslintConfig": {
"extends": "wordpress"
},
"stylelint": {
"extends": "stylelint-config-wordpress"
},
"devDependencies": {
"autoprefixer": "^8.2.0",
"babel-core": "^6.26.0",
"babel-preset-env": "^1.6.1",
"chalk": "^2.3.2",
"cssnano": "^3.10.0",
"del": "^3.0.0",
"eslint": "^4.19.1",
"eslint-config-wordpress": "^2.0.0",
"gulp": "^3.9.1",
"gulp-babel": "^7.0.1",
"gulp-changed": "^3.2.0",
"gulp-eslint": "^4.0.2",
"gulp-if": "^2.0.2",
"gulp-iife": "^0.3.0",
"gulp-imagemin": "^4.1.0",
"gulp-postcss": "^7.0.1",
"gulp-rename": "^1.2.2",
"gulp-sourcemaps": "^2.6.4",
"gulp-stylelint": "^7.0.0",
"gulp-uglify": "^3.0.0",
"gulp-zip": "^4.1.0",
"stylelint": "^9.2.0",
"stylelint-config-wordpress": "^13.0.0",
"yargs": "^11.0.0"
}
}