forked from keenwon/jqPaginator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.64 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
{
"name": "jq-paginator",
"version": "2.0.2",
"description": "基于 jQuery 的多功能分页控件",
"main": "./index.js",
"scripts": {
"start": "webpack-dev-server --open",
"beforecommit": "elint lint commit && npm run test:lint",
"test": "npm run test:lint && npm run test:unit && npm run test:e2e",
"test:lint": "elint lint \"+(src|test)/**/*.js\" \"*.js\" --fix",
"test:unit": "karma start",
"test:e2e": "node test/e2e/runner.js",
"prebuild": "rimraf ./dist",
"build": "rollup --config"
},
"devDependencies": {
"chromedriver": "^75.0.1",
"codecov": "^3.5.0",
"elint": "^1.11.1",
"elint-preset-kw": "^1.8.1",
"execa": "^2.0.2",
"get-port": "^5.0.0",
"get-port-cli": "^2.0.0",
"html-webpack-plugin": "^3.2.0",
"jquery": "^3.4.1",
"karma": "^4.1.0",
"karma-chrome-launcher": "^2.2.0",
"karma-coverage": "^1.1.2",
"karma-jasmine": "^2.0.1",
"karma-mocha-reporter": "^2.2.5",
"nightwatch": "^1.1.13",
"rimraf": "^2.6.3",
"rollup": "^1.16.6",
"rollup-plugin-terser": "^5.1.0",
"webpack": "^4.35.2",
"webpack-cli": "^3.3.5",
"webpack-dev-server": "^3.7.2"
},
"repository": {
"type": "git",
"url": "git+https://github.com/keenwon/jqPaginator.git"
},
"keywords": [
"jQuery",
"paginator",
"pagination"
],
"author": {
"name": "keenwon",
"email": "[email protected]",
"url": "http://keenwon.com"
},
"files": [
"dist",
"index.js"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/keenwon/jqPaginator/issues"
},
"homepage": "https://github.com/keenwon/jqPaginator#readme"
}