-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
70 lines (70 loc) · 2 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
{
"name": "roving-ux-react",
"version": "1.2.3",
"description": "Stateful roving index for react web ui",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"types": "dist/types/index.d.ts",
"files": [
"dist/"
],
"scripts": {
"build:esm": "tsc --project tsconfig.esm.json",
"build:cjs": "tsc --project tsconfig.cjs.json",
"build": "npm run build:cjs && npm run build:esm",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx",
"prettify": "prettier --write .",
"release": "standard-version",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dangoo/roving-ux-react.git"
},
"keywords": [
"accessibility",
"ux",
"react"
],
"author": "Daniel Gooß",
"license": "ISC",
"bugs": {
"url": "https://github.com/dangoo/roving-ux-react/issues"
},
"homepage": "https://github.com/dangoo/roving-ux-react#readme",
"devDependencies": {
"@babel/core": "^7.14.2",
"@babel/preset-env": "^7.14.2",
"@babel/preset-react": "^7.13.13",
"@babel/preset-typescript": "^7.13.0",
"@testing-library/jest-dom": "^5.12.0",
"@testing-library/react": "^12.0.0",
"@testing-library/react-hooks": "^8.0.0",
"@testing-library/user-event": "^13.1.9",
"@types/jest": "^27.0.1",
"@types/node": "^17.0.2",
"@types/react": "^17.0.5",
"@types/react-dom": "^17.0.5",
"@typescript-eslint/eslint-plugin": "^5.10.1",
"@typescript-eslint/parser": "^5.10.1",
"babel-jest": "^27.0.6",
"caniuse-lite": "^1.0.30001292",
"eslint": "^8.7.0",
"eslint-config-prettier": "^8.3.0",
"eslint-config-react": "^1.1.7",
"eslint-plugin-jest": "^26.0.0",
"eslint-plugin-react": "^7.28.0",
"eslint-plugin-react-hooks": "^4.3.0",
"jest": "^27.0.6",
"prettier": "2.5.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"standard-version": "^9.3.1",
"typescript": "^4.5.4"
},
"peerDependencies": {
"react": ">=16.8.0",
"react-dom": ">=16.8.0"
},
"sideEffects": false
}