-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·52 lines (52 loc) · 1.3 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
{
"name": "ts-pagination",
"version": "3.0.1",
"description": "Pagination for Node.js Typescript and JavaScript",
"main": "dist/cjs/_index.js",
"module": "dist/esm5/_index.js",
"types": "dist/cjs/_index.d.ts",
"sideEffects": false,
"scripts": {
"test": "gulp test",
"test:ci": "gulp testCI",
"build": "gulp build",
"coverage": "nyc pnpm test:ci && nyc report --reporter=text-lcov | coveralls",
"addTagForFeatureFiles": "gulp addTagForFeatureFiles",
"upgrade-interactive": "npx npm-check --update"
},
"homepage": "https://github.com/BibbyChung/ts-pagination#readme",
"bugs": "https://github.com/BibbyChung/ts-pagination/issues",
"repository": {
"url": "git+https://github.com/BibbyChung/ts-pagination.git",
"type": "git"
},
"author": "Bibby Chung",
"license": "MIT",
"keywords": [
"pagination",
"pager",
"typescript"
],
"devDependencies": {
"@types/node": "^18.11.18",
"assert": "^2.0.0",
"cucumber": "^6.0.7",
"cucumber-pretty": "^6.0.1",
"gulp": "^4.0.2",
"nyc": "^15.1.0",
"rimraf": "^4.1.1",
"through2": "^4.0.2",
"ts-node": "^10.9.1",
"typescript": "^4.9.4",
"coveralls": "^3.1.1"
},
"nyc": {
"all": true,
"include": [
"src/**/*.ts"
],
"reporter": [
"text"
]
}
}