forked from leoferreiralima/tabnews-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
73 lines (73 loc) · 1.93 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
{
"name": "tabnews-sdk",
"version": "1.0.1",
"description": "Node.js library to interact with TabNews API",
"main": "build/index.js",
"typings": "build/index.d.ts",
"files": [
"build/"
],
"engines": {
"node": ">=18"
},
"scripts": {
"prepare": "husky install",
"build": "tsc -p ./tsconfig.publish.json && resolve-tspaths",
"lint": "eslint .",
"format": "prettier --write .",
"commit": "cz",
"test": "vitest",
"test:watch": "vitest watch",
"test:coverage": "vitest run --coverage"
},
"author": {
"email": "[email protected]",
"name": "Leonardo Ferreira Lima"
},
"repository": {
"type": "git",
"url": "git+https://github.com/leoferreiralima/tabnews-sdk.git"
},
"bugs": {
"url": "https://github.com/leoferreiralima/tabnews-sdk/issues"
},
"homepage": "https://github.com/leoferreiralima/tabnews-sdk#README",
"license": "MIT",
"devDependencies": {
"@commitlint/cli": "^17.7.1",
"@commitlint/config-conventional": "^17.7.0",
"@types/node": "^20.6.0",
"@typescript-eslint/eslint-plugin": "^6.7.0",
"@typescript-eslint/parser": "^6.7.0",
"@vitest/coverage-v8": "^0.34.4",
"commitizen": "^4.3.0",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.49.0",
"eslint-config-prettier": "^9.0.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-prettier": "^5.0.0",
"husky": "^8.0.3",
"lint-staged": "^14.0.1",
"prettier": "^3.0.3",
"resolve-tspaths": "^0.8.15",
"typescript": "^5.2.2",
"vitest": "^0.34.4",
"vitest-fetch-mock": "^0.2.2"
},
"lint-staged": {
"**/*.{js,ts,tsx}": [
"eslint --fix",
"vitest related --run"
],
"**/*": "prettier --write --ignore-unknown"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"dependencies": {
"cross-fetch": "^4.0.0"
}
}