-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
48 lines (48 loc) · 1.02 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
{
"name": "emulate-tab",
"version": "1.2.1",
"description": "emulate tab key without selector or dependencies",
"scripts": {
"test": "node test.js",
"build": "tsc",
"prebuild:all": "rm -rf dist; rm -rf tmp",
"build:all": "node build.js",
"postbuild:all": "npm run pack",
"pack": "node pack.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/e-hein/emulate-tab.git"
},
"keywords": [
"emulate",
"simulate",
"browser",
"user",
"tab",
"font-end",
"keyboard",
"javascript",
"focus",
"tabindex",
"web"
],
"author": "Emanuel Hein",
"license": "MIT",
"bugs": {
"url": "https://github.com/e-hein/emulate-tab/issues"
},
"homepage": "https://emulate-tab.net-root.de/",
"devDependencies": {
"chalk": "^4.1.0",
"rollup": "^2.18.0",
"shelljs": "^0.8.4",
"typescript": "^3.9.5",
"uglify-js": "^3.10.0"
},
"main": "dist/emulate-tab.js",
"types": "dist/emulate-tab.d.ts",
"files": [
"dist/**/*.*"
]
}