-
Notifications
You must be signed in to change notification settings - Fork 34
/
Copy pathpackage.json
72 lines (72 loc) · 1.96 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
{
"name": "rickmortyapi",
"version": "2.3.0",
"author": "Axel Fuhrmann",
"description": "The Rick and Morty API JS client",
"license": "MIT",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"engines": {
"node": ">= 18"
},
"scripts": {
"dev": "tsc -p tsconfig.json --watch",
"build": "rm -rf dist && tsc -p tsconfig.json --emitDeclarationOnly",
"postbuild": "esbuild src/index.ts --platform=node --target=node18 --sourcemap --minify --bundle --outfile=dist/index.js",
"lint": "eslint src/. --cache --fix",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"test:size": "bundlesize",
"docs": "typedoc",
"docs:watch": "npm run docs -- --watch --preserveWatchOutput",
"doctoc": "doctoc README.md",
"release": "standard-version",
"prepare": "husky install"
},
"devDependencies": {
"@commitlint/cli": "^17.3.0",
"@commitlint/config-conventional": "^17.3.0",
"@types/jest": "^29.2.3",
"@types/node": "^18.11.10",
"@typescript-eslint/eslint-plugin": "^5.45.0",
"@typescript-eslint/parser": "^5.45.0",
"bundlesize": "^0.18.1",
"doctoc": "^2.0.1",
"esbuild": "^0.15.16",
"eslint": "^8.29.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^7.0.0",
"jest": "^29.3.1",
"prettier": "^2.3.2",
"standard-version": "^9.5.0",
"ts-jest": "^29.0.3",
"typedoc": "^0.23.21",
"typescript": "^4.9.3"
},
"standard-version": {
"skip": {
"tag": true
}
},
"bundlesize": [
{
"path": "./dist/index.js",
"maxSize": "2 kB"
}
],
"repository": {
"type": "git",
"url": "git+https://github.com/afuh/rick-and-morty-api-node.git"
},
"keywords": [
"node",
"rick and morty",
"api"
],
"bugs": {
"url": "https://github.com/afuh/rick-and-morty-api-node/issues"
},
"homepage": "https://github.com/afuh/rick-and-morty-api-node#readme"
}