-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage-old.json
90 lines (90 loc) · 2.21 KB
/
package-old.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
{
"name": "comic-vine-sdk",
"version": "1.2.4",
"description": "A JS/TS client for the Comic Vine API",
"keywords": [
"comic",
"comics",
"comic-vine",
"metadata"
],
"homepage": "https://github.com/AllyMurray/comic-vine#readme",
"bugs": {
"url": "https://github.com/AllyMurray/comic-vine/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/AllyMurray/comic-vine.git"
},
"license": "MIT",
"author": "Ally Murray",
"main": "dist/cjs/index.cjs.js",
"module": "dist/mjs/index.js",
"types": "dist/mjs/index.d.ts",
"exports": {
".": {
"import": "./dist/mjs/index.js",
"require": "./dist/cjs/index.cjs.js"
}
},
"files": [
"dist/**"
],
"scripts": {
"build": "run-s build:**",
"build:clean": "rimraf dist",
"build:esm": "tsc -p tsconfig.build.json",
"build:cjs": "tsc -p tsconfig.cjs.build.json",
"build:package-json": "bash ./scripts/create-package-json",
"test": "jest",
"format": "prettier ./src --write",
"lint": "eslint src --fix",
"prepare": "husky install",
"prepack": "npm run build",
"commit": "cz",
"semantic-release": "semantic-release"
},
"dependencies": {
"axios": "1.3.4",
"clone-deep": "4.0.1",
"zod": "3.21.4"
},
"devDependencies": {
"@semantic-release/changelog": "6.0.2",
"@semantic-release/git": "10.0.1",
"@types/clone-deep": "4.0.1",
"@types/jest": "29.5.0",
"@types/node": "16.11.59",
"@typescript-eslint/eslint-plugin": "5.55.0",
"@typescript-eslint/parser": "5.55.0",
"commitizen": "4.3.0",
"cz-conventional-changelog": "3.3.0",
"eslint": "8.36.0",
"eslint-config-prettier": "8.7.0",
"husky": "8.0.3",
"jest": "29.5.0",
"lint-staged": "13.2.0",
"nock": "13.3.0",
"npm-run-all": "4.1.5",
"prettier": "2.8.4",
"rimraf": "3.0.2",
"semantic-release": "^19.0.5",
"ts-jest": "29.0.5",
"typescript": "5.0.2"
},
"engines": {
"node": ">=14"
},
"lint-staged": {
"*.{ts,json,md}": "npm run format",
"*.ts": "npm run lint"
},
"publishConfig": {
"access": "public"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}