forked from davidtheclark/react-aria-tabpanel
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·65 lines (65 loc) · 1.83 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
{
"name": "react-aria-tabpanel",
"version": "4.2.2",
"description": "A style- and markup-agnostic, React-powered Tab Panel component that fulfills the WAI-ARIA Design Pattern",
"main": "index.js",
"scripts": {
"demo-bundle": "browserify demo/js/demo.js -t babelify --extension=.jsx -o demo/demo-bundle.js",
"demo-watch": "watchify demo/js/demo.js -t babelify -d --extension=.jsx -o demo/demo-bundle.js -v",
"demo-dev": "npm run demo-watch & http-server demo",
"lint": "eslint .",
"test": "npm run lint",
"build": "browserify index.js -p bundle-collapser/plugin -x react -x react-dom -t babelify --standalone ariaTabPanel | uglifyjs --compress --mangle > umd/ariaTabPanel.js",
"prepare": "npm run build"
},
"repository": {
"type": "git",
"url": "https://github.com/davidtheclark/react-aria-tabpanel.git"
},
"author": {
"name": "David Clark",
"email": "[email protected]",
"url": "http://davidtheclark.com"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/davidtheclark/react-aria-tabpanel/issues"
},
"homepage": "https://github.com/davidtheclark/react-aria-tabpanel",
"keywords": [
"react",
"reactjs",
"react-component",
"aria",
"accessibility",
"tabs",
"tab-panel",
"widget"
],
"dependencies": {
"focus-group": "^0.2.2"
},
"peerDependencies": {
"react": "0.14.x || ^15.0.0",
"react-dom": "0.14.x || ^15.0.0"
},
"babel": {
"presets": [
"es2015",
"react"
]
},
"devDependencies": {
"babel-preset-es2015": "6.6.0",
"babel-preset-react": "6.5.0",
"babelify": "7.2.0",
"browserify": "13.0.0",
"bundle-collapser": "1.2.1",
"eslint": "2.7.0",
"http-server": "0.9.0",
"react": "15.0.1",
"react-dom": "15.0.1",
"uglify-js": "2.6.2",
"watchify": "3.7.0"
}
}