-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
72 lines (72 loc) · 1.54 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "skip-links",
"version": "1.0.2",
"description": "Skip links component for react.",
"author": {
"name": "Muhannad Abdelrazek",
"email": "[email protected]"
},
"main": "lib/index.js",
"module": "es/index.js",
"files": [
"css",
"es",
"lib",
"umd"
],
"repository": {
"type": "git",
"url": "git+https://github.com/Muhnad/skip-links.git"
},
"bugs": {
"url": "https://github.com/Muhnad/skip-links/issues"
},
"keywords": [
"a11y",
"accessibility",
"skip links",
"skip navigation",
"skip to main content",
"react component"
],
"scripts": {
"start": "nwb serve-react-demo",
"build": "nwb build-react-component --copy-files",
"clean": "nwb clean-module && nwb clean-demo",
"test": "nwb test-react",
"prepublishOnly": "npm run build"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"pre-push": "npm test"
}
},
"lint-staged": {
"*.js": [
"eslint --fix",
"git add"
]
},
"dependencies": {
"prop-types": "^15.7.2"
},
"peerDependencies": {
"react": "16.x"
},
"devDependencies": {
"eslint": "^5.16.0",
"eslint-config-prettier": "^4.3.0",
"eslint-config-xo-react": "^0.19.0",
"eslint-config-xo-space": "^0.21.0",
"eslint-plugin-react": "^7.19.0",
"eslint-plugin-react-hooks": "^1.7.0",
"husky": "^1.3.1",
"lint-staged": "^8.2.1",
"nwb": "0.24.5",
"prettier": "^1.19.1",
"react": "^16.13.1",
"react-dom": "^16.13.1"
},
"license": "MIT"
}