-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
44 lines (44 loc) · 1.08 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
{
"name": "@grrr/accessible-tabs",
"version": "1.0.0",
"description": "Accessible tabs enhancer, providing tablist, tab and tabpanel roles and spec-compliant tab switching behaviour.",
"keywords": [
"tablist",
"tabs",
"tabpanel",
"accessible",
"accessibility"
],
"main": "index.mjs",
"author": "GRRR <[email protected]>",
"homepage": "https://github.com/grrr-amsterdam/accessible-tabs",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/grrr-amsterdam/accessible-tabs.git"
},
"devDependencies": {
"@babel/core": "^7.6.4",
"@babel/plugin-transform-modules-commonjs": "^7.6.0",
"babel-jest": "^27.0.5",
"eslint": "^7.29.0",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jest": "^24.3.6",
"jest": "^27.0.5"
},
"scripts": {
"test": "jest",
"lint": "eslint . --ext=.js,.mjs"
},
"jest": {
"transform": {
"^.+\\.m?js$": "babel-jest"
},
"moduleFileExtensions": [
"js",
"mjs"
],
"testEnvironment": "jsdom"
}
}