This repository has been archived by the owner on Jul 4, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 252
/
package.json
68 lines (68 loc) · 2.22 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
63
64
65
66
67
68
{
"name": "backbone.paginator",
"version": "2.0.8",
"description": "A pageable Backbone.Collection superset. Supports server-side/client-side/infinite pagination and sorting.",
"main": "lib/backbone.paginator.js",
"module": "src/backbone.paginator.js",
"homepage": "https://backbone-paginator.github.io/backbone.paginator/",
"repository": {
"type": "git",
"url": "git://github.com/backbone-paginator/backbone.paginator.git"
},
"keywords": [
"backbone"
],
"author": "Jimmy Yuen Ho Wong <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/backbone-paginator/backbone.paginator/issues"
},
"peerDependencies": {
"@babel/runtime": "^7.9.6",
"backbone": "1.1.2 || 1.2.3 || ^1.3.2",
"underscore": "^1.9.1"
},
"devDependencies": {
"@babel/core": "^7.9.6",
"@babel/plugin-transform-runtime": "^7.9.6",
"@babel/preset-env": "^7.9.6",
"@rollup/plugin-babel": "^5.0.0",
"@rollup/plugin-commonjs": "^11.1.0",
"@rollup/plugin-node-resolve": "^7.1.3",
"babel-eslint": "^10.1.0",
"backbone": "1.1.2 || 1.2.3 || ^1.3.2",
"documentation": "^13.0.0",
"eslint": "^6.8.0",
"eslint-config-google": "^0.14.0",
"eslint-plugin-compat": "^3.5.1",
"jquery": "^3.3.1",
"karma": "^5.0.4",
"karma-chrome-launcher": "^3.1.0",
"karma-coverage": "^2.0.2",
"karma-firefox-launcher": "^1.0.1",
"karma-qunit": "^4.1.0",
"karma-rollup-preprocessor": "^7.0.5",
"karma-safari-launcher": "^1.0.0",
"karma-sinon": "^1.0.5",
"qunit": "^2.10.0",
"rollup": "^2.8.2",
"rollup-plugin-istanbul": "^2.0.1",
"rollup-plugin-terser": "^5.3.0",
"sinon": "^9.0.2",
"underscore": "^1.9.1"
},
"scripts": {
"build": "rollup --config",
"build:docs": "documentation build src/backbone.paginator.js -f html -o api -a public -a protected -a private -a undefined",
"lint": "eslint ./src/backbone.paginator.js test/**/*.js",
"format": "eslint --fix ./src/backbone.paginator.js test/**/*.js",
"pretest": "npm run lint",
"test": "karma start --single-run",
"preversion": "npm test",
"postversion": "git push && git push --tags",
"prepublishOnly": "npm run build"
},
"browserslist": [
"> 5%"
]
}