-
Notifications
You must be signed in to change notification settings - Fork 30
/
package.json
72 lines (72 loc) · 1.92 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
69
70
71
72
{
"name": "js-offcanvas",
"title": "js-Offcanvas",
"main": "src/js-offcanvas.js",
"description": "jQuery Accesible Offcanvas Panels",
"version": "1.2.11",
"homepage": "https://github.com/vmitsaras/js-offcanvas",
"license": "MIT",
"keywords": [
"jquery",
"jquery-plugin",
"accesible",
"offcanvas"
],
"author": {
"name": "Vasileios Mitsaras",
"twitter": "vmitsaras",
"github": "vmitsaras",
"email": "[email protected]",
"url": "http://vasilis.co"
},
"scripts": {
"test": "grunt test",
"clean": "rm -Rf node_modules/ && rm -f ./package-lock.json && npm cache clean -f",
"clean_windows": "IF EXIST node_modules rd /s /q node_modules && IF EXIST package-lock.json DEL package-lock.json && npm cache clean -f",
"rebuild": "npm run clean && npm i",
"rebuild_windows": "npm run clean_windows && npm i"
},
"devDependencies": {
"autoprefixer": "^6.3.3",
"bower": "^1.7.7",
"cssnano": "^3.5.2",
"glob": "^7.0.3",
"grunt": "^0.4.5",
"grunt-banner": "^0.6.0",
"grunt-bytesize": "^0.1.1",
"grunt-cli": "^1.2.0",
"grunt-contrib-clean": "^1.0.0",
"grunt-contrib-concat": "^1.0.0",
"grunt-contrib-cssmin": "^1.0.0",
"grunt-contrib-jshint": "^1.0.0",
"grunt-contrib-qunit": "^1.0.1",
"grunt-contrib-sass": "^1.0.0",
"grunt-contrib-uglify": "^1.0.0",
"grunt-contrib-watch": "^0.6.1",
"grunt-gh-pages": "^1.0.0",
"grunt-lintspaces": "^0.7.4",
"grunt-mkdir": "^1.0.0",
"grunt-modernizr": "^1.0.3",
"grunt-postcss": "^0.8.0",
"load-grunt-tasks": "^3.4.1",
"matchdep": "^1.0.1",
"qunitjs": "^1.22.0"
},
"dependencies": {
"js-utilities": "*",
"js-trap-tab": "*",
"js-button": "*"
},
"engines": {
"node": ">=0.8.0",
"npm": ">=1.2.10",
"yarn": ">= 1.0.0"
},
"config": {
"grunt": "grunt",
"src": "src",
"dist": "dist",
"test": "test",
"demo": "demo"
}
}