forked from jcgertig/date-input-polyfill
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
51 lines (51 loc) · 1.36 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
{
"name": "date-input-polyfill",
"version": "2.15.0",
"description": "Automatically adds datepickers to input[type=date] on IE, Firefox, and OS X Safari.",
"main": "date-input-polyfill.dist.js",
"contributors": [
{
"name": "Pavol Švidraň",
"email": "[email protected]",
"url": "https://github.com/JBeater"
}
],
"repository": {
"type": "git",
"url": "git://github.com/JBeater/date-input-polyfill.git"
},
"keywords": [
"html5",
"light",
"lightweight",
"input",
"type",
"date",
"datepicker",
"polyfill"
],
"analyze": true,
"license": "MIT",
"devDependencies": {
"babel-core": "^6.17.0",
"babel-loader": "^6.2.5",
"babel-plugin-transform-runtime": "^6.15.0",
"babel-preset-es2015": "^6.16.0",
"babel-preset-stage-3": "^6.17.0",
"css-loader": "^0.25.0",
"eslint": "^3.7.1",
"node-sass": "^3.10.1",
"sass-loader": "^4.0.2",
"style-loader": "^0.13.1",
"webpack": "^1.13.2",
"webpack-dev-server": "^1.16.2"
},
"dependencies": {
"babel-runtime": "^6.11.6"
},
"scripts": {
"start": "./node_modules/.bin/webpack-dev-server",
"start-c9": "./node_modules/.bin/webpack-dev-server --host $IP --port $PORT",
"build": "./node_modules/.bin/webpack --devtool=none --optimize-minimize --optimize-occurence-order --optimize-dedupe"
}
}