-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
40 lines (40 loc) · 933 Bytes
/
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
{
"name": "simplehide-js",
"version": "1.0.0",
"description": "A lightweight jQuery plugin for hiding/showing HTML DOM elements such as DIV's.",
"main": "simplehide.js",
"scripts": {
"test": "jest",
"build": "./node_modules/gulp/bin/gulp.js compress"
},
"repository": {
"type": "git",
"url": "https://github.com/rwoloszyn/simplehide.js.git"
},
"keywords": [
"css",
"jquery",
"readmore",
"expand",
"collapse",
"hide",
"show",
"toggle"
],
"author": "Rafal Woloszyn <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/rwoloszyn/simplehide.js/issues"
},
"homepage": "https://github.com/rwoloszyn/simplehide.js",
"dependencies": {
"jquery": ">2.1.4"
},
"devDependencies": {
"gulp": "^3.9.0",
"gulp-rename": "^1.2.0",
"gulp-uglify": "^1.0.2",
"gulp-webserver": "^0.9.1",
"jest": "^23.2.0"
}
}