-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.25 KB
/
Copy pathpackage.json
File metadata and controls
54 lines (54 loc) · 1.25 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
{
"name": "@fabiocaccamo/tabbo.js",
"version": "0.1.1",
"description": "enhanced keyboard tabbing usability on any website / webapp with one line of code.",
"keywords": [
"website",
"webapp",
"application",
"navigation",
"keyboard",
"tabbed",
"tabbing",
"tabindex",
"tab",
"focus",
"accessibilty",
"usability",
"browser"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/fabiocaccamo/tabbo.js"
},
"main": "dist/tabbo.js",
"scripts": {
"build": "npm run format && gulp build --production",
"format": "./node_modules/.bin/prettier --config .prettierrc --loglevel warn --write src/tabbo.js",
"watch": "gulp"
},
"devDependencies": {
"@babel/core": "^7.21.4",
"@babel/preset-env": "^7.21.4",
"@babel/register": "^7.21.0",
"browser-sync": "^3.0.2",
"gulp": "^4.0.2",
"gulp-babel": "^8.0.0",
"gulp-cli": "^2.3.0",
"gulp-concat": "^2.5.2",
"gulp-if": "^3.0.0",
"gulp-load-plugins": "^2.0.3",
"gulp-minify": "^3.1.0",
"gulp-sourcemaps": "^3.0.0",
"prettier": "^3.0.3",
"rimraf": "^5.0.0",
"yargs": "^17.7.1"
},
"babel": {
"presets": [
"@babel/preset-env"
]
},
"private": false
}