-
Notifications
You must be signed in to change notification settings - Fork 36
/
package.json
70 lines (70 loc) · 2.21 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
{
"name": "rangetouch",
"version": "2.0.1",
"description": "A super tiny library to make input type='range' sliders work better on touch devices",
"homepage": "https://rangetouch.com",
"author": "Sam Potts <[email protected]>",
"license": "MIT",
"main": "dist/rangetouch.js",
"module": "dist/rangetouch.mjs",
"jsnext:main": "dist/rangetouch.mjs",
"browser": "dist/rangetouch.js",
"browserslist": "> 1%",
"keywords": [
"range",
"slider",
"rangetouch"
],
"repository": {
"type": "git",
"url": "git://github.com/sampotts/rangetouch.git"
},
"bugs": {
"url": "https://github.com/sampotts/rangetouch/issues"
},
"scripts": {
"lint": "eslint src/js",
"deploy": "yarn lint && gulp deploy"
},
"dependencies": {},
"devDependencies": {
"ansi-colors": "^4.1.1",
"aws-sdk": "^2.630.0",
"@babel/core": "^7.8.6",
"@babel/preset-env": "^7.8.6",
"babel-eslint": "^10.1.0",
"babel-preset-minify": "^0.5.1",
"del": "^5.1.0",
"eslint": "^5.16.0",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-config-prettier": "^6.10.0",
"eslint-plugin-import": "^2.20.1",
"fancy-log": "^1.3.3",
"gulp": "^4.0.2",
"gulp-autoprefixer": "^7.0.1",
"gulp-awspublish": "^4.1.1",
"gulp-better-rollup": "^4.0.1",
"gulp-clean-css": "^4.2.0",
"gulp-imagemin": "^7.1.0",
"gulp-less": "^4.0.1",
"gulp-plumber": "^1.2.1",
"gulp-rename": "^2.0.0",
"gulp-replace": "^1.0.0",
"gulp-s3": "^0.11.0",
"gulp-size": "^3.0.0",
"gulp-sourcemaps": "^2.6.5",
"gulp-svgstore": "^7.0.1",
"gulp-terser": "^1.2.0",
"prettier-eslint": "^9.0.1",
"prettier-stylelint": "^0.4.2",
"rollup": "^1.32.0",
"rollup-plugin-babel": "^4.3.3",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-replace": "^2.2.0",
"stylelint": "^13.2.0",
"stylelint-config-prettier": "^8.0.1",
"stylelint-config-recommended": "^3.0.0",
"stylelint-order": "^4.0.0"
}
}