generated from tomsouthall/react-library-vite
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
80 lines (80 loc) · 1.97 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
73
74
75
76
77
78
79
80
{
"name": "turnstone-recent-searches",
"version": "0.5.0",
"description": "A plugin for the Turnstone React component. Display Recent Searches in the default listbox.",
"author": "Tom Southall",
"keywords": ["turnstone", "react", "autocomplete", "autosuggest", "dropdown", "recent searches"],
"files": [
"dist",
"README.md"
],
"main": "./dist/turnstone-recent-searches.umd.js",
"module": "./dist/turnstone-recent-searches.es.js",
"exports": {
".": {
"import": "./dist/turnstone-recent-searches.es.js",
"require": "./dist/turnstone-recent-searches.umd.js"
}
},
"homepage": "https://github.com/tomsouthall/turnstone-recent-searches#readme",
"repository": {
"type": "git",
"url": "https://github.com/tomsouthall/turnstone-recent-searches"
},
"scripts": {
"dev": "vite",
"build": "vite build",
"test": "vitest run",
"watch": "vitest",
"coverage": "vitest run --coverage"
},
"devDependencies": {
"@testing-library/dom": "^8.11.3",
"@testing-library/react": "^12.1.3",
"@vitejs/plugin-react": "^1.0.7",
"@wojtekmaj/enzyme-adapter-react-17": "^0.6.6",
"c8": "^7.11.0",
"enzyme": "^3.11.0",
"eslint": "^8.9.0",
"eslint-plugin-react": "^7.28.0",
"jsdom": "^19.0.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-test-renderer": "^17.0.2",
"vite": "^2.8.0",
"vitest": "^0.3.4"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"eslintConfig": {
"env": {
"browser": true,
"node": true,
"es2020": true
},
"extends": [
"eslint:recommended",
"plugin:react/recommended"
],
"parserOptions": {
"sourceType": "module"
},
"rules": {
"semi": [
"error",
"never"
],
"react/prop-types": 0
}
}
}