forked from Stryzhevskyi/rangeSlider
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
75 lines (75 loc) · 1.95 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
{
"name": "rangeslider-pure",
"title": "range-slider",
"description": "Simple, small and fast vanilla JavaScript polyfill for the HTML5 <input type=\"range\"> slider element",
"version": "0.4.4",
"main": "dist/range-slider.js",
"scripts": {
"dev": "webpack-dev-server --no-inline --watch-content-base",
"build": "cross-env NODE_ENV=build webpack",
"lint": "eslint src/range-slider.js"
},
"homepage": "https://github.com/Stryzhevskyi/rangeSlider",
"author": {
"name": "Serhei Stryzhevskyi",
"url": "https://github.com/Stryzhevskyi"
},
"repository": {
"type": "git",
"url": "[email protected]:Stryzhevskyi/rangeSlider.git"
},
"keywords": [
"input",
"range",
"slider",
"rangeslider",
"rangeslider.js",
"polyfill",
"browser",
"pure",
"vanilla"
],
"licenses": [
{
"type": "MIT",
"url": "https://github.com/Stryzhevskyi/rangeSlider/blob/master/LICENSE.md"
}
],
"bugs": {
"url": "https://github.com/Stryzhevskyi/rangeSlider/issues"
},
"engines": {
"node": ">=6.0.0"
},
"dependencies": {},
"devDependencies": {
"autoprefixer": "^7.1.4",
"babel-core": "^6.26.0",
"babel-eslint": "^8.0.0",
"babel-loader": "^7.1.2",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-preset-env": "^1.6.0",
"babel-preset-es2015": "^6.24.1",
"cross-env": "^5.0.5",
"css-loader": "^0.28.7",
"cssnano": "^3.10.0",
"cssnext": "^1.8.4",
"eslint": "^4.7.0",
"eslint-config-standard": "^10.2.1",
"eslint-loader": "^1.9.0",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-node": "^5.1.1",
"eslint-plugin-promise": "^3.5.0",
"eslint-plugin-standard": "^3.0.1",
"extract-text-webpack-plugin": "^3.0.0",
"html-entities": "^1.2.1",
"postcss-loader": "^2.0.6",
"pre-commit": "^1.2.2",
"style-loader": "^0.18.2",
"webpack": "^3.6.0",
"webpack-dev-server": "^2.8.2"
},
"pre-commit": [
"lint"
]
}