-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
78 lines (78 loc) · 1.81 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
{
"name": "react-widget-listbox",
"version": "2.0.0",
"description": "rw-widget-listbox",
"main": "cjs/index.js",
"module": "esm/index.js",
"types": "lib/index.d.ts",
"files": [
"cjs",
"esm",
"lib",
"style",
"*.md"
],
"scripts": {
"docs": "packez build ./examples/index.js -d docs -c",
"start": "tsc -w",
"cjs": "transform-es src -d cjs -c -t cjs",
"esm": "transform-es src -d esm -c -t esm",
"tsc": "tsc",
"demo": "packez server ./examples/index.js -d dist -w -c",
"test": "jest",
"clear": "rimraf lib cjs esm docs dist",
"build": "run-s clear tsc cjs esm docs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/react-widget/listbox.git"
},
"keywords": [
"react",
"react-widget",
"react-widget-listbox",
"listbox"
],
"author": "[email protected]",
"license": "MIT",
"bugs": {
"url": "https://github.com/react-widget/listbox/issues"
},
"homepage": "https://github.com/react-widget/listbox#readme",
"peerDependencies": {
"react": ">=16.8.0",
"react-dom": ">=16.8.0"
},
"dependencies": {
"@babel/runtime": "^7.9.2",
"classnames": "^2.2.6",
"dom-helpers": "^5.1.4"
},
"devDependencies": {
"@types/enzyme": "^3.10.5",
"@types/enzyme-adapter-react-16": "^1.0.6",
"@types/react": "^16.9.34",
"@types/react-dom": "^16.9.8",
"babel-plugin-search-and-replace": "^1.0.1",
"babel-plugin-transform-react-remove-prop-types": "^0.4.24",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.2",
"jest": "^25.4.0",
"npm-run-all": "^4.1.5",
"packez": "^4.1.2",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"rimraf": "^3.0.2",
"transform-es": "^5.0.3",
"typescript": "^3.8.3"
},
"browserslist": [
">=0.25%",
"not dead",
"not op_mini all",
"not Android 4.4.3-4.4.4",
"not ios_saf < 10",
"not Chrome < 50",
"firefox ESR"
]
}