-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
68 lines (68 loc) · 1.8 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": "@kokorotobita/paginize",
"description": "Library for implementing simple pagination",
"version": "1.1.0",
"author": "kokoro <[email protected]>",
"license": "MIT",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc -p tsconfig.build.json",
"dev": "npm run build && node bin/example-command.js",
"lint": "run-s -c lint:*",
"lint:eslint": "eslint --ext .js,.ts --cache ./src",
"lint:prettier": "prettier --write src/**/*.ts",
"test": "vitest"
},
"devDependencies": {
"@tsconfig/node18": "^1.0.1",
"@tsconfig/strictest": "^2.0.0",
"@types/eslint": "^8.37.0",
"@types/node": "^18.15.11",
"eslint": "^8.38.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-prettier": "^8.8.0",
"eslint-import-resolver-typescript": "^3.5.5",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-unused-imports": "^2.0.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.8.8",
"typescript": "^5.0.4",
"vitest": "^0.30.1",
"vitest-github-actions-reporter": "^0.10.0"
},
"overrides": {
"tsconfig-paths": "^4.0.0"
},
"engines": {
"node": ">=16.0.0"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"bin": {
"example-command": "bin/example-command.js"
},
"keywords": [],
"files": [
"bin",
"src",
"!src/**/*.test.ts",
"!src/**/__snapshots__",
"dist"
],
"repository": {
"type": "git",
"url": "git+https://github.com/kokoro-hart/Paginize.git"
},
"bugs": {
"url": "https://github.com/kokoro-hart/Paginize/issues"
},
"homepage": "https://github.com/kokoro-hart/Paginize#readme",
"dependencies": {
"jsdom": "^22.1.0"
}
}