-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 948 Bytes
/
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
{
"name": "email-genie",
"version": "1.0.9",
"description": "Native JS Autocomplete on email fields",
"main": "dist/email-genie.js",
"unpkg": "dist/email-genie.min.js",
"scripts": {
"start": "webpack --mode=development",
"prod": "webpack --mode=production"
},
"files": [
"dist"
],
"keywords": [
"email",
"autocomplete",
"autosuggest",
"suggestion",
"input",
"field",
"no-jquery",
"vanilla",
"vanilla-js"
],
"author": "Simon Arnold, <moi@smnarnold.com> (https://smnarnold.com)",
"repository": {
"type": "git",
"url": "git+https://github.com/smnarnold/email-genie.git"
},
"bugs": {
"url": "https://github.com/smnarnold/email-genie/issues"
},
"homepage": "https://github.com/smnarnold/email-genie#readme",
"license": "ISC",
"devDependencies": {
"webpack": "^5.71.0",
"webpack-cli": "^3.3.12"
},
"dependencies": {
"path": "^0.12.7"
}
}