-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.11 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.11 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
{
"name": "lipstick",
"version": "1.0.0",
"description": "A simple off-canvas navigation menu.",
"keywords": [
"jquery-plugin",
"jquery",
"plugins",
"menu",
"off-canvas"
],
"repository": {
"type": "git",
"url": "https://github.com/oscarmcm/lipstick.git"
},
"bugs": {
"url": "https://github.com/oscarmcm/lipstick/issues"
},
"author": {
"name": "Oscar Cortez",
"email": "om.cortez.2010@gmail.com",
"url": "https://github.com/oscarmcm"
},
"license": "MIT",
"dependencies": {
"jquery": ">=1.5.1"
},
"devDependencies": {
"grunt": "^1.0.1",
"grunt-contrib-concat": "^1.0.1",
"grunt-contrib-jshint": "^1.0.0",
"grunt-contrib-uglify": "^2.0.0",
"grunt-contrib-watch": "^1.0.0",
"grunt-jscs": "^3.0.1",
"grunt-karma": "^2.0.0",
"jscs": "^3.0.7",
"karma": "^1.3.0",
"karma-firefox-launcher": "^1.0.0",
"karma-phantomjs-launcher": "^1.0.2",
"karma-qunit": "^1.2.1",
"phantomjs": "^2.1.7",
"qunitjs": "^2.0.1"
},
"scripts": {
"jscs": "jscs src",
"test": "npm run jscs && grunt travis --verbose"
}
}