forked from davidtheclark/react-aria-menubutton
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
92 lines (92 loc) · 2.59 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
81
82
83
84
85
86
87
88
89
90
91
92
{
"name": "react-aria-menubutton",
"version": "6.1.0",
"description": "A fully accessible and flexible React-powered menu button",
"main": "dist/index.js",
"scripts": {
"lint": "eslint .",
"demo-bundle":
"webpack --mode production --config ./webpack-demo.config.js",
"demo-watch":
"webpack --mode development --config ./webpack-demo.config.js --watch",
"start": "npm run demo-watch & http-server demo",
"jest": "jest",
"test": "npm run lint && npm run jest",
"umd-unminified":
"webpack --mode development --config ./webpack-umd.config.js",
"umd-minified":
"webpack --mode production --config ./webpack-umd.config.js",
"umd": "npm run umd-unminified && npm run umd-minified",
"format": "prettier --single-quote --write src/**/*.js demo/js/*.js",
"build": "babel src -d dist --ignore src/__tests__",
"prepublishOnly": "npm run umd && npm run build"
},
"repository": {
"type": "git",
"url": "https://github.com/davidtheclark/react-aria-menubutton.git"
},
"author": {
"name": "David Clark",
"email": "[email protected]",
"url": "http://davidtheclark.com"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/davidtheclark/react-aria-menubutton/issues"
},
"homepage": "https://github.com/davidtheclark/react-aria-menubutton",
"keywords": [
"react",
"reactjs",
"react-component",
"aria",
"accessibility",
"menu",
"dropdown",
"widget"
],
"dependencies": {
"focus-group": "^0.3.1",
"prop-types": "^15.6.0",
"teeny-tap": "^0.2.0"
},
"peerDependencies": {
"react": "0.14.x || ^15.0.0 || ^16.0.0",
"react-dom": "0.14.x || ^15.0.0 || ^16.0.0"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-eslint": "^8.0.3",
"babel-loader": "^7.1.2",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.24.1",
"enzyme": "^3.2.0",
"enzyme-adapter-react-16": "^1.1.0",
"enzyme-to-json": "^3.2.2",
"eslint": "^4.13.1",
"http-server": "^0.10.0",
"jest": "^21.2.1",
"prettier": "^1.9.2",
"react": "^16.2.0",
"react-dom": "^16.2.0",
"react-test-renderer": "^16.2.0",
"webpack": "^4.15.1",
"webpack-cli": "^3.0.8"
},
"babel": {
"presets": [
"react",
["env", {"loose": true}]
],
"plugins": [
"transform-class-properties"
]
},
"jest": {
"setupFiles": ["./src/__tests__/helpers/jest-setup.js"],
"testRegex": "/__tests__/.*\\.test.js$",
"clearMocks": true
}
}