-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
48 lines (48 loc) · 1.34 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": "@bramus/pagination-sequence",
"version": "1.2.1",
"description": "Generate a sequence of numbers for use in a Pagination Component, the clever way.",
"type": "module",
"main": "dist/index.cjs",
"module": "dist/index.esm.js",
"exports": {
".": {
"require": "./dist/index.cjs",
"default": "./dist/index.esm.js"
}
},
"scripts": {
"build-esm": "esbuild --bundle ./src/index.js --outfile=./dist/index.esm.js --format=esm --sourcemap --minify",
"build-cjs": "esbuild --bundle ./src/index.js --outfile=./dist/index.cjs --format=cjs --sourcemap --minify",
"build": "npm run build-esm && npm run build-cjs",
"prepublish": "npm run build",
"pretest": "npm run build",
"test": "mocha"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bramus/js-pagination-sequence.git"
},
"keywords": [
"pagination",
"sequence"
],
"author": {
"name": "Bramus Van Damme",
"email": "[email protected]",
"twitter": "@bramus",
"web": "https://www.bram.us/"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/bramus/js-pagination-sequence/issues"
},
"homepage": "https://github.com/bramus/js-pagination-sequence#readme",
"devDependencies": {
"esbuild": "^0.14.5",
"mocha": "^9.1.3"
},
"dependencies": {
"@bramus/range": "^1.1.2"
}
}