-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 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
49
50
51
52
53
54
55
56
57
{
"name": "skaleb-simple-paginator",
"version": "1.0.8",
"description": "Simple client for client-side pagination making use of generic types and allowing for chainable methods",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"test": "mocha",
"coverage": "nyc --reporter=lcov mocha",
"lint": "tslint -c tslint.json 'src/**/*.ts'"
},
"files": [
"dist",
"test",
"LICENSE",
".nycrc.json",
".mocharc.js",
"tslint.json",
"tsconfig.json"
],
"repository": {
"type": "git",
"url": "https://github.com/ToeFungi/skaleb-simple-paginator.git"
},
"keywords": [
"Pagination",
"Client",
"Side",
"Simple",
"Arrays",
"Dataset",
"Pages"
],
"author": {
"email": "pickeringacw@gmail.com",
"name": "Alex Pickering",
"url": "https://github.com/ToeFungi/"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/ToeFungi/skaleb-simple-paginator/issues"
},
"homepage": "https://github.com/ToeFungi/skaleb-simple-paginator#readme",
"devDependencies": {
"@types/chai": "4.2.7",
"@types/mocha": "5.2.7",
"@types/node": "13.1.8",
"nyc": "15.0.0",
"chai": "4.2.0",
"mocha": "7.0.0",
"ts-node": "8.6.2",
"tslint": "6.0.0",
"typescript": "3.7.5",
"tslint-config-standard": "9.0.0"
}
}