-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1.13 KB
/
package.json
File metadata and controls
36 lines (36 loc) · 1.13 KB
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
{
"name": "webkit-input-range-fill-lower",
"productName": "WebKit Input Range Fill Lower Hack",
"version": "3.0.0",
"description": "Customize the native input range controls like the ```::-ms-fill-lower``` property on webkit browsers (like Chrome)",
"main": "dist/index.js",
"dependencies": {},
"devDependencies": {
"terser": "^4.6.12",
"typescript": "^3.8.3",
"xo": "^0.30.0"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "xo",
"build": "tsc",
"dist": "terser ./dist/webkit-input-range-fill-lower.js --output ./dist/webkit-input-range-fill-lower.min.js",
"watch": "tsc -w"
},
"repository": {
"type": "git",
"url": "git+https://github.com/samuelcarreira/webkit-input-range-fill-lower.git"
},
"keywords": [
"range"
],
"author": "Samuel Carreira <samuelcarreira@outlook.com> (http://www.samuelcarreira.com)",
"license": "MIT",
"bugs": {
"url": "https://github.com/samuelcarreira/webkit-input-range-fill-lower/issues"
},
"homepage": "https://github.com/samuelcarreira/webkit-input-range-fill-lower#readme",
"files": [
"dist/**/*"
]
}