-
Notifications
You must be signed in to change notification settings - Fork 21
/
package.json
49 lines (49 loc) · 1.31 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
{
"name": "offside-js",
"version": "1.4.0",
"description": "Minimal JavaScript kit without library dependencies to push things off-canvas using just class manipulation",
"keywords": [
"responsive",
"off-canvas",
"offcanvas",
"menu",
"navigation"
],
"author": "Andrea Carraro <[email protected]>",
"license": "MIT",
"main": "dist/offside.js",
"repository": {
"type": "git",
"url": "https://github.com/toomuchdesign/offside.git"
},
"homepage": "https://github.com/toomuchdesign/offside",
"bugs": {
"url": "https://github.com/toomuchdesign/offside/issues"
},
"devDependencies": {
"grunt": "~1.5.0",
"grunt-contrib-copy": "~1.0.0",
"grunt-contrib-jshint": "~2.1.0",
"grunt-contrib-uglify": "~5.0.0",
"grunt-contrib-watch": "~1.1.0",
"grunt-replace": "~1.0.0",
"jshint-stylish": "^2.0.1",
"load-grunt-tasks": "^5.0.0"
},
"scripts": {
"grunt": "grunt",
"test": "npm run grunt jshint",
"setup": "npm prune && npm install && npm update",
"build": "npm run grunt build",
"watch": "npm run grunt watch",
"preversion": "npm test",
"version": "npm run build && git add dist && git add package.json",
"postversion": "git push && git push --tags"
},
"files": [
"dist"
],
"engines": {
"node": ">=0.11.0"
}
}