generated from Gabb-c/node-ts-lib-setup
-
-
Notifications
You must be signed in to change notification settings - Fork 30
/
Copy pathpackage.json
103 lines (103 loc) · 3.43 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
{
"name": "pokenode-ts",
"version": "1.17.0",
"private": false,
"description": "A lightweight Node.js wrapper for the PokéAPI with built-in types.",
"keywords": [
"pokeapi",
"PokéAPI",
"pokenode-ts",
"Pokenode-ts",
"pokemon",
"pokedex"
],
"homepage": "https://pokenode-ts-docs-gabb-c.vercel.app/",
"bugs": {
"url": "https://github.com/Gabb-c/pokenode-ts/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/Gabb-c/pokenode-ts"
},
"license": "MIT",
"author": {
"name": "Gabb-c",
"url": "https://github.com/Gabb-c"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "rimraf dist && tsc",
"build:ci": "yarn build && yarn types",
"format": "prettier 'src/**/*.[jt]s?(x)' --write",
"lint": "eslint src --ext js,ts",
"lint:ci": "yarn lint:fix && yarn format && yarn sort",
"lint:fix": "eslint src --ext js,ts --fix",
"lint:lock": "lockfile-lint -p ./yarn.lock -a yarn -t yarn -s",
"prepare": "is-ci || husky install",
"prepublishOnly": "yarn build:ci",
"reinstall": "rimraf node_modules yarn.lock && yarn cache clean && yarn install --check-files --silent --audit",
"sort": "sort-package-json package.json",
"test:ci": "jest --ci --runInBand --bail --detectOpenHandles --errorOnDeprecated",
"test:coverage": "jest --coverage",
"test:dev": "jest --verbose --colors --expand --maxWorkers=50% --detectOpenHandles --errorOnDeprecated --bail",
"test:watch": "jest --watch --verbose --colors --expand --maxWorkers=25%",
"types": "dts-bundle-generator --config dts-generator.json"
},
"dependencies": {
"axios": "^0.27.2",
"axios-cache-adapter": "^2.7.3",
"pino": "^8.4.2",
"pino-pretty": "^9.1.0",
"tslib": "^2.4.0"
},
"devDependencies": {
"@babel/cli": "^7.18.10",
"@babel/core": "^7.18.13",
"@babel/node": "^7.18.10",
"@babel/preset-env": "^7.18.10",
"@babel/preset-typescript": "^7.18.6",
"@commitlint/cli": "^17.0.3",
"@commitlint/config-conventional": "^17.0.3",
"@semantic-release/changelog": "^6.0.1",
"@semantic-release/commit-analyzer": "^9.0.2",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^8.0.5",
"@semantic-release/npm": "^9.0.1",
"@semantic-release/release-notes-generator": "^10.0.3",
"@swc/core": "^1.2.244",
"@swc/jest": "^0.2.22",
"@types/jest": "^28.1.8",
"@types/node": "^18.7.13",
"@typescript-eslint/eslint-plugin": "^5.35.1",
"@typescript-eslint/parser": "^5.35.1",
"babel-plugin-module-resolver": "^4.1.0",
"dts-bundle-generator": "^6.12.0",
"eslint": "^8.22.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-node": "^4.1.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest": "^26.8.7",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-promise": "^6.0.1",
"eslint-plugin-unicorn": "^43.0.2",
"http-status-codes": "^2.2.0",
"husky": "^8.0.1",
"is-ci": "^3.0.1",
"jest": "^29.0.0",
"lint-staged": "^13.0.3",
"lockfile-lint": "^4.8.0",
"prettier": "^2.7.1",
"semantic-release": "^19.0.5",
"sort-package-json": "^1.57.0",
"ts-node-dev": "^2.0.0",
"typescript": "^4.8.2"
},
"engines": {
"node": ">=14"
}
}