-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
42 lines (42 loc) · 879 Bytes
/
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
{
"name": "pagination-ui-less",
"version": "0.1.2",
"description": "A Pagination manager library without UI.",
"source": "src/index.ts",
"main": "dist/index.umd.js",
"module": "dist/index.modern.module.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"README.md"
],
"keywords": [
"pagination",
"ui-less"
],
"scripts": {
"dev": "tsc --watch",
"build": "microbundle",
"test": "jest"
},
"repository": {
"url": "SidStraw/Pagination-UI-LESS",
"type": "git"
},
"author": {
"email": "sid@sid.tw",
"name": "SidStraw",
"url": "https://sid.tw"
},
"license": "MIT",
"devDependencies": {
"@types/jest": "^27.0.2",
"jest": "^27.3.1",
"microbundle": "^0.14.1",
"ts-jest": "^27.0.7",
"typescript": "^4.4.4"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/"
}
}