-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathpackage.json
More file actions
102 lines (102 loc) · 2.28 KB
/
package.json
File metadata and controls
102 lines (102 loc) · 2.28 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
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
93
94
95
96
97
98
99
100
101
102
{
"name": "jquery-responsive-menu",
"title": "jQuery Responsive Menu",
"version": "0.2.1",
"description": "A jQuery plugin for making navigation menus responsive",
"main": "dist/responsive-menu.js",
"homepage": "",
"author": "John Bowyer-Smyth",
"scripts": {
"build": "npm install && grunt",
"start": "grunt watch",
"test": "grunt"
},
"repository": {
"type": "git",
"url": ""
},
"keywords": [
"jQuery",
"plugin",
"responsive",
"menu",
"navigation",
"list"
],
"licenses": [
{
"type": "",
"url": "",
"files": ""
}
],
"bugs": {
"url": ""
},
"directories": {
"src": {
"root": "./src",
"js": "./src/js",
"css": "./src/css",
"lib": "./src/lib",
"images": "./src/images",
"html": "./src"
},
"dist": {
"root": "./dist",
"js": "./dist/js",
"css": "./dist/css",
"images": "./dist/images",
"lib": "./dist/lib",
"html": "./dist"
},
"deploy": {
"root": "./../",
"css": "./../lib/responsive-menu",
"js": "./../lib/responsive-menu",
"images": "./../lib/responsive-menu",
"lib": "./../lib",
"html": "./"
},
"demo": {
"root": "./demo",
"js": "./demo/js",
"css": "./demo/css",
"images": "./demo/images",
"lib": "./demo/lib",
"html": "./demo"
},
"doc": "./doc",
"lib": "./lib",
"templates": "./templates",
"test": "./test"
},
"fileNames": {
"js": "responsive-menu",
"css": "responsive-menu",
"demo": "demo"
},
"dependencies": {},
"devDependencies": {
"grunt": "~0.4.5",
"grunt-bower-installer": "~0.3.6",
"grunt-browser-sync": "^2.1.2",
"grunt-bump": "~0.0.14",
"grunt-contrib-concat": "~0.4.0",
"grunt-contrib-copy": "~0.5.0",
"grunt-contrib-csslint": "~0.2.0",
"grunt-contrib-cssmin": "~0.10.0",
"grunt-contrib-jscs": "~0.1.8",
"grunt-contrib-jshint": "~0.8.0",
"grunt-contrib-uglify": "~0.3.2",
"grunt-contrib-watch": "~0.5.3",
"grunt-htmlhint": "~0.4.0",
"grunt-includes": "~0.4.4",
"grunt-jsonlint": "~1.0.4",
"grunt-markdown": "~0.6.1",
"grunt-modernizr": "^0.5.2",
"grunt-shell-spawn": "~0.3.0",
"load-grunt-tasks": "~0.3.0"
},
"private": true
}