-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.01 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
{
"name": "voogpagination",
"description": "A jQuery pagination plugin for the Voog CMS",
"version": "1.0.1",
"author": {
"name": "Mats-Joonas Kulla",
"email": "mj@codelight.eu",
"url": "https://codelight.eu/"
},
"repository": {
"type": "git",
"url": "https://github.com/codelight-eu/voogPagination"
},
"bugs": {
"url": "https://github.com/codelight-eu/voogPagination/issues",
"email": "mj@codelight.eu"
},
"keywords": [
"voog",
"voog api",
"pagination",
"jquery"
],
"license": "MIT",
"main": "dist/voogpagination.min.js",
"files": [
"src",
"dist"
],
"scripts": {
"build": "webpack --progress -p --config webpack.config.js",
"rmdist": "rimraf dist",
"lint": "eslint src",
"test": "yarn run lint"
},
"engines": {
"node": ">= 6.9.4"
},
"devDependencies": {
"webpack": "^3.6.0",
"eslint": "^3.19.0",
"eslint-loader": "^1.7.1",
"eslint-plugin-import": "^2.2.0"
},
"dependencies": {
"jquery": ">=2.2"
}
}