-
-
Notifications
You must be signed in to change notification settings - Fork 46
/
package.json
53 lines (53 loc) · 1.44 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
{
"name": "datalist-polyfill",
"version": "1.25.1",
"description": "A minimal and dependency-free vanilla JavaScript datalist polyfill. Supports all standard's functionality as well as mimics other browsers behavior.",
"main": "datalist-polyfill.js",
"scripts": {
"test": "run-p validate:* lint:*",
"validate:html": "html-validate demos",
"lint:xo": "xo datalist-polyfill.js",
"release": "np",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git://github.com/mfranzke/datalist-polyfill.git"
},
"author": "Maximilian Franzke",
"license": "MIT",
"readmeFilename": "README.md",
"keywords": [
"datalist",
"polyfill",
"javascript",
"html",
"autosuggest",
"autosuggester",
"suggest",
"suggester",
"select",
"front-end"
],
"bugs": {
"url": "https://github.com/mfranzke/datalist-polyfill/issues"
},
"homepage": "https://mfranzke.github.io/datalist-polyfill/demos/",
"devDependencies": {
"@commitlint/cli": "^18.0.0",
"@commitlint/config-conventional": "^18.0.0",
"@wdio/cli": "^7.19.5",
"@wdio/dot-reporter": "^8.0.0",
"@wdio/local-runner": "^7.19.5",
"@wdio/mocha-framework": "^8.0.0",
"@wdio/sync": "^7.19.5",
"html-validate": "^8.0.0",
"husky": "^8.0.0",
"np": "^9.0.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.3.2",
"pretty-quick": "^3.1.1",
"webdriverio": "^7.19.5",
"xo": "^0.53.0"
}
}