forked from jcgertig/date-input-polyfill
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
93 lines (93 loc) · 2.67 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
{
"name": "@12core/date-input-polyfill",
"version": "3.1.1",
"description": "Automatically adds datepickers to input[type=date] on IE, Firefox, and OS X Safari.",
"main": "dist/date-input-polyfill.umd.js",
"module": "dist/date-input-polyfill.esm.js",
"contributors": [
{
"name": "Brian Blakely",
"email": "[email protected]"
},
{
"name": "Jonathan Gertig",
"email": "[email protected]",
"url": "https://github.com/jcgertig"
},
{
"name": "Pierre Klink"
},
{
"name": "Kyle Alwyn"
},
{
"name": "Joseph Victor Estolas",
"url": "https://github.com/jvestolas"
},
{
"name": "Bret Comnes",
"url": "https://bret.io"
}
],
"repository": {
"type": "git",
"url": "git://github.com/little-core-labs/date-input-polyfill.git"
},
"bugs": "https://github.com/little-core-labs/date-input-polyfill/issues",
"keywords": [
"html5",
"light",
"lightweight",
"input",
"type",
"date",
"datepicker",
"polyfill"
],
"license": "MIT",
"devDependencies": {
"@12core/eslint-config-12core": "^5.0.0",
"@babel/core": "^7.12.3",
"@babel/preset-env": "^7.12.1",
"@rollup/plugin-babel": "^5.2.1",
"@rollup/plugin-commonjs": "^21.0.0",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^13.0.0",
"auto-changelog": "^2.2.0",
"autoprefixer": "^10.0.4",
"cpx2": "^4.0.0",
"eslint": "^8.0.1",
"gh-release": "^6.0.0",
"mkdirp": "^1.0.4",
"npm-run-all2": "^5.0.0",
"postcss": "^8.1.14",
"postcss-extend": "^1.0.5",
"postcss-nesting": "^10.0.0",
"rimraf": "^3.0.2",
"rollup": "^2.29.0",
"rollup-plugin-postcss": "^4.0.0",
"rollup-plugin-terser": "^7.0.2",
"browser-sync": "^2.26.7"
},
"scripts": {
"prepublishOnly": "git push --follow-tags && gh-release -y",
"prepare": "npm run build",
"test": "run-s test:*",
"test:eslint": "eslint --ext .js src/",
"version": "run-s prepare version:*",
"version:changelog": "auto-changelog -p --template keepachangelog auto-changelog --breaking-pattern 'BREAKING CHANGE:'",
"version:git": "git add CHANGELOG.md dist",
"clean": "rimraf dist/* && mkdirp dist",
"build": "run-s clean build:*",
"build:js": "rollup --config rollup.config.js",
"build:static": "cpx 'src/**/*.html' dist",
"watch": "run-s clean && run-p watch:*",
"watch:js": "npm run build:js -- -w --no-watch.clearScreen",
"watch:static": "npm run build:static -- -w",
"watch:serve": "browser-sync start --server 'dist' --files 'dist'",
"start": "run-s watch"
},
"dependencies": {
"dateformat": "^5.0.1"
}
}