-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
126 lines (126 loc) · 3.22 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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
{
"name": "time-input-polyfill",
"description": "An accessible polyfill for `[input type='time']` elements modeled after the Chrome & Firefox desktop implementations.",
"version": "1.0.11",
"main": "index.cjs.js",
"module": "index.mjs",
"jsdelivr": "dist/time-input-polyfill.auto.min.js",
"devDependencies": {
"@babel/core": "~7.13.14",
"@babel/preset-env": "~7.13.12",
"@babel/register": "~7.13.14",
"autoprefixer": "^9.8.6",
"babel-eslint": "~9.0.0",
"babelify": "~10.0.0",
"browser-sync": "~2.26.14",
"del": "~6.0.0",
"envify": "~4.1.0",
"eslint": "7.23.0",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-prettier": "^3.3.1",
"foldero": "~0.1.1",
"glob": "~7.1.6",
"gulp": "~4.0.2",
"gulp-auto-imports": "^3.1.1",
"gulp-changed": "~4.0.2",
"gulp-cssnano": "~2.1.3",
"gulp-data": "~1.3.1",
"gulp-eslint": "~6.0.0",
"gulp-filter": "6.0.0",
"gulp-header": "^2.0.9",
"gulp-htmlmin": "~5.0.1",
"gulp-if": "~3.0.0",
"gulp-imagemin": "~7.1.0",
"gulp-load-plugins": "~2.0.6",
"gulp-plumber": "~1.2.1",
"gulp-postcss": "~9.0.0",
"gulp-pug": "^5.0.0",
"gulp-rename": "~2.0.0",
"gulp-rev": "9.0.0",
"gulp-rev-delete-original": "0.2.3",
"gulp-rev-rewrite": "4.0.0",
"gulp-sass": "~4.1.0",
"gulp-sourcemaps": "~3.0.0",
"gulp-terser": "^2.0.1",
"gulp-uglify": "~3.0.2",
"gulp-util": "~3.0.8",
"imagemin-pngquant": "~9.0.2",
"imagemin-svgo": "~9.0.0",
"js-yaml": "~4.0.0",
"lodash": "~4.17.21",
"minimist": "~1.2.5",
"normalize.css": "~8.0.1",
"prettier": "~2.2.1",
"pug": "~3.0.2",
"rimraf": "3.0.2",
"rollup-plugin-babel": "^4.3.3",
"rollup-stream": "^1.24.1",
"vinyl-buffer": "~1.0.1",
"vinyl-source-stream": "~2.0.0",
"watchify": "~4.0.0"
},
"keywords": [
"time",
"input",
"polyfill",
"IE",
"accessible",
"accessibility",
"a11y"
],
"repository": {
"type": "git",
"url": "git+https://github.com/Dan503/time-input-polyfill.git"
},
"homepage": "https://dan503.github.io/time-input-polyfill/",
"author": "Daniel Tonon",
"license": "MIT",
"bugs": {
"url": "https://github.com/Dan503/time-input-polyfill/issues"
},
"scripts": {
"clean-deps": "npx rimraf node_modules",
"clean": "npx gulp clean",
"lint": "npx gulp eslint",
"test": "npx gulp test",
"format": "npx prettier --single-quote --write src/**/*.js",
"start": "SET NODE_ENV=development && npx gulp serve",
"start:prod": "SET NODE_ENV=production && npx gulp serve --production",
"build": "SET NODE_ENV=production && npx gulp --production",
"prepublishOnly": "npx gulp pre-publish",
"postpublish": "npx gulp post-publish",
"testPublish": "npm run prepublishOnly && npm run postpublish"
},
"engines": {
"node": ">=8.16.0"
},
"browserslist": [
"last 2 version",
"> 5%",
"safari 5",
"ios 6",
"android 4"
],
"config": {
"//": "Entry files",
"host": "127.0.0.1",
"port": "3000",
"baseUrl": "./",
"directories": {
"source": "src",
"destination": "docs",
"temporary": "tmp",
"//": "Directories relative to `source` directory",
"modules": "_modules",
"layouts": "_layouts",
"images": "_images",
"styles": "_styles",
"scripts": "_scripts",
"data": "_data"
},
"entries": {
"js": "main.js",
"css": "main.{sass,scss}"
}
}
}