-
Notifications
You must be signed in to change notification settings - Fork 196
/
Copy pathpackage.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": "^86.0.0",
"codecov": "^3.8.0",
"elint": "^2.0.0-alpha.3",
"elint-preset-kw": "^1.9.0",
"execa": "^4.1.0",
"get-port": "^5.1.1",
"get-port-cli": "^2.0.0",
"html-webpack-plugin": "^4.5.0",
"jquery": "^3.5.1",
"karma": "^5.2.3",
"karma-chrome-launcher": "^3.1.0",
"karma-coverage": "^2.0.3",
"karma-jasmine": "^4.0.1",
"karma-mocha-reporter": "^2.2.5",
"nightwatch": "^1.5.1",
"rimraf": "^3.0.2",
"rollup": "^2.32.1",
"rollup-plugin-terser": "^7.0.2",
"webpack": "^4.44.2",
"webpack-cli": "^4.1.0",
"webpack-dev-server": "^3.11.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/keenwon/jqPaginator.git"
},
"keywords": [
"jQuery",
"paginator",
"pagination"
],
"author": {
"name": "keenwon",
"email": "semanwmj@gmail.com",
"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"
}