-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.55 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
{
"name": "roving-ux-react",
"version": "1.0.1",
"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",
"prettify": "prettier --write .",
"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": "^5.1.2",
"@testing-library/user-event": "^13.1.9",
"@types/jest": "^26.0.23",
"@types/node": "^15.3.0",
"@types/react": "^17.0.5",
"@types/react-dom": "^17.0.5",
"babel-jest": "^26.6.3",
"jest": "^26.6.3",
"prettier": "2.3.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"typescript": "^4.2.4"
},
"peerDependencies": {
"react": ">=16.8.0",
"react-dom": ">=16.8.0"
},
"sideEffects": false
}