-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 2.68 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
{
"name": "bespoke-nav",
"version": "1.0.3-dev",
"description": "A composite plugin that combines the navigation plugins into a single plugin.",
"homepage": "https://github.com/opendevise/bespoke-nav",
"bugs": "https://github.com/opendevise/bespoke-nav/issues",
"author": {
"name": "Dan Allen",
"url": "https://github.com/mojavelinux"
},
"main": "./lib/bespoke-nav.js",
"repository": {
"type": "git",
"url": "https://github.com/opendevise/bespoke-nav"
},
"scripts": {
"test": "gulp"
},
"dependencies": {
"bespoke-nav-kbd": "^1.0.3",
"bespoke-nav-touch": "^1.0.1"
},
"peerDependencies": {
"bespoke": ">=1.0.0"
},
"devDependencies": {
"bespoke": "^1.0.0",
"bespoke-classes": "^1.0.0",
"browserify": "^13.0.0",
"browserify-istanbul": "^2.0.0",
"del": "^2.2.0",
"function-bind": "^1.0.2",
"gh-pages": "^0.11.0",
"gulp": "^3.9.1",
"gulp-concat": "^2.6.0",
"gulp-header": "^1.7.1",
"gulp-jshint": "^2.0.0",
"gulp-rename": "^1.2.2",
"gulp-replace": "^0.5.4",
"gulp-uglify": "^1.5.3",
"gulp-util": "^3.0.7",
"istanbul": "^0.4.2",
"jasmine-core": "^2.4.1",
"jshint": "^2.9.1",
"jshint-stylish": "^2.1.0",
"karma": "=0.13.18",
"karma-browserify": "^5.0.3",
"karma-coverage": "^0.5.5",
"karma-jasmine": "^0.3.8",
"karma-chrome-launcher": "^0.2.3",
"karma-firefox-launcher": "^0.1.7",
"karma-phantomjs-launcher": "^1.0.0",
"phantomjs-prebuilt": "^2.1.3",
"simulant": "^0.2.0",
"socket.io": "=1.3.7",
"vinyl-buffer": "1.0.0",
"vinyl-source-stream": "^1.1.0",
"watchify": "^3.7.0"
},
"engines": {
"node": ">=0.10.0"
},
"license": "MIT",
"keywords": [
"bespoke-plugin"
],
"readme": "# bespoke-nav\n\nA composite plugin that combines the navigation plugins for [Bespoke.js](http://markdalgleish.com/projects/bespoke.js) ([bespoke-nav-kbd](https://www.npmjs.com/package/bespoke-nav-kbd) and [bespoke-nav-touch](https://www.npmjs.com/package/bespoke-nav-touch)) into a single plugin.\n\n## Usage\n\nThis plugin is shipped in a [UMD format](https://github.com/umdjs/umd), meaning it is available as a CommonJS/AMD module or as a browser global.\n\nFor example, when using CommonJS modules:\n\n```js\nvar bespoke = require('bespoke'),\n nav = require('bespoke-nav');\n\nbespoke.from('.deck', [\n nav()\n]);\n```\n\nWhen using browser globals:\n\n```js\nbespoke.from('.deck', [\n bespoke.plugins.nav()\n]);\n```\n\nFor more information about options and how the plugin works, see the [complete README](https://github.com/opendevise/bespoke-nav/blob/master/README.adoc).\n\n## License\n\n[MIT License](http://en.wikipedia.org/wiki/MIT_License)\n"
}