-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
33 lines (33 loc) · 996 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
{
"name": "jquery-ui-scrolltab",
"version": "1.0.0",
"description": "jQuery plugin to extend jQuery UI tabs functionality with scrollable tabs. It supports responsive layouts.",
"main": "index.js",
"dependencies": {
"@types/jquery": "^3.2.10",
"@types/jqueryui": "^1.11.35"
},
"devDependencies": {
"browser-sync": "^2.18.13",
"gulp": "^3.9.1",
"gulp-header": "^1.8.9",
"gulp-sass": "^3.1.0",
"gulp-sourcemaps": "^2.6.0",
"gulp-typedoc": "^2.0.2",
"gulp-typescript": "^3.2.1",
"rimraf": "^2.6.1",
"tslint": "^5.5.0",
"typedoc": "^0.8.0",
"typescript": "^2.4.2"
},
"scripts": {
"start": "npm run clean && gulp watch",
"test": "echo \"Error: no test specified\" && exit 1",
"build": "npm run clean && gulp",
"clean": "gulp clean",
"deploy-files": "npm run clean && gulp deploy-files"
},
"homepage": "https://davidsekar.github.io/jQuery-UI-ScrollTab/",
"author": "David Gnasekaran",
"license": "MIT"
}