-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
47 lines (47 loc) · 1.19 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
{
"name": "roving-tabindex-element-list",
"version": "1.2.0",
"description": "Library that keeps a list of Elements that can be navigated using tab",
"main": "index.js",
"scripts": {
"test": "ava"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tajakobsen/roving-tabindex-element-list.git"
},
"keywords": [
"tabindex",
"keyboard",
"a11y",
"accessibility"
],
"author": "Tom Arild Jakobsen <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/tajakobsen/roving-tabindex-element-list/issues"
},
"homepage": "https://github.com/tajakobsen/roving-tabindex-element-list#readme",
"devDependencies": {
"ava": "^0.23.0",
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-register": "^6.26.0",
"browser-env": "^3.2.2",
"eslint": "^4.11.0",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-plugin-import": "^2.8.0"
},
"dependencies": {
"ramda": "^0.25.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-latest": "^6.22.0"
},
"ava": {
"require": [
"babel-register",
"./test/helpers/setup-browser-env.js"
],
"babel": "inherit"
}
}