forked from davidtheclark/react-aria-menubutton
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 2.25 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 2.25 KB
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
{
"name": "react-aria-menubutton",
"version": "2.0.1",
"description": "A fully accessible and flexible React-powered menu button",
"main": "index.js",
"scripts": {
"lint": "eslint .",
"minify": "uglifyjs ./dist/ariaMenuButton.js -c -m -o ./dist/ariaMenuButton.min.js",
"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-bs": "browser-sync start --server demo --files=\"demo/**/*.css,demo/index.html,demo/demo-bundle.js\"",
"demo-dev": "parallelshell \"npm run demo-watch\" \"npm run demo-bs\"",
"test-dev": "zuul --local 8080 --open -- test",
"pretest": "npm run lint",
"test": "zuul -- test",
"prebuild-bundle": "trash dist/* --force",
"build-bundle": " browserify src/ariaMenuButton.jsx -p bundle-collapser/plugin -x react -t [ babelify --loose ] --standalone ariaMenuButton -o dist/ariaMenuButton.js",
"prebuild-modules": "trash dist-modules/* --force",
"build-modules": "babel src --loose --out-dir dist-modules",
"build": "npm run build-bundle && parallelshell \"npm run build-modules\" \"npm run minify\"",
"prepublish": "npm run build"
},
"repository": {
"type": "git",
"url": "https://github.com/davidtheclark/react-aria-menubutton.git"
},
"author": {
"name": "David Clark",
"email": "david.dave.clark@gmail.com",
"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": {
"react": "0.13.x",
"tap.js": "^2.1.1"
},
"devDependencies": {
"babel": "5.8.21",
"babelify": "6.2.0",
"browser-sync": "2.8.2",
"browserify": "11.0.1",
"bundle-collapser": "1.2.1",
"eslint": "1.2.1",
"eslint-plugin-react": "3.3.0",
"parallelshell": "2.0.0",
"sinon": "1.16.1",
"tape": "4.2.0",
"trash": "2.0.0",
"uglify-js": "2.4.24",
"watchify": "3.3.1",
"zuul": "3.4.0"
}
}