-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.64 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
49
50
51
52
53
54
55
56
{
"name": "with-skip-links",
"version": "0.0.3",
"description": "React Context for providing site Skip Links for keyboard users",
"main": "build/index.js",
"module": "build/index.es.js",
"jsnext:main": "build/index.es.js",
"scripts": {
"vercel-build": "npm run docs",
"build": "rollup -c",
"test": "jest --coverage",
"test:badges": "npm run test && npx jest-coverage-badges output ./docs/badges",
"docs": "typedoc --out public src --exclude '**/__tests__/*' --stripInternal",
"publish": "./publish.sh"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jacksonhardaker/with-skip-links.git"
},
"keywords": [
"react",
"a11y",
"accessibility",
"skip navigation",
"skip links"
],
"author": "Jackson Hardaker",
"license": "MIT",
"bugs": {
"url": "https://github.com/jacksonhardaker/with-skip-links/issues"
},
"homepage": "https://github.com/jacksonhardaker/with-skip-links#readme",
"devDependencies": {
"@testing-library/dom": "^7.22.1",
"@testing-library/jest-dom": "^5.11.3",
"@testing-library/react": "^10.4.8",
"@types/jest": "^26.0.9",
"@types/react": "^16.9.45",
"@types/react-dom": "^16.9.8",
"jest": "^26.2.2",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"rollup": "^2.23.1",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-peer-deps-external": "^2.2.3",
"rollup-plugin-typescript2": "^0.27.2",
"ts-jest": "^26.1.4",
"typedoc": "^0.18.0",
"typescript": "^3.9.7"
},
"peerDependencies": {},
"dependencies": {
"jest-coverage-badges": "^1.1.2"
}
}