forked from Doist/todoist-api-typescript
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
75 lines (75 loc) · 2.51 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
{
"name": "@doist/todoist-api-typescript",
"version": "3.0.2",
"description": "A typescript wrapper for the Todoist REST API.",
"author": "Doist developers",
"repository": "[email protected]:doist/todoist-api-typescript.git",
"homepage": "https://developer.todoist.com/rest/v1/?javascript",
"license": "MIT",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"sideEffects": false,
"scripts": {
"clean": "rimraf dist",
"format-check": "npx prettier --check \"./**/*.{ts,tsx,json,md,yml,babelrc,html}\"",
"format-fix": "npx prettier --write \"./**/*.{ts,tsx,json,md,yml,babelrc,html}\"",
"lint": "eslint ./src --ext ts,tsx --fix",
"lint-check": "eslint ./src --ext ts,tsx",
"ts-compile-check": "npx tsc -p tsconfig.json",
"audit": "npm audit --audit-level=moderate",
"test": "jest",
"build": "npx tsc -p tsconfig.json",
"integrity-checks": "npm-run-all clean format-check lint-check test build",
"prepublishOnly": "npm run integrity-checks",
"prepare": "npm run build"
},
"dependencies": {
"axios": "^1.0.0",
"axios-case-converter": "^1.0.0",
"axios-retry": "^3.1.9",
"runtypes": "^6.5.0",
"ts-custom-error": "^3.2.0",
"uuid": "^9.0.0"
},
"devDependencies": {
"@doist/eslint-config": "8.1.3",
"@doist/prettier-config": "3.0.5",
"@types/jest": "29.4.0",
"@types/uuid": "9.0.7",
"@typescript-eslint/eslint-plugin": "5.54.1",
"@typescript-eslint/parser": "5.54.1",
"eslint": "8.35.0",
"eslint-config-prettier": "8.7.0",
"eslint-import-resolver-webpack": "0.13.2",
"eslint-plugin-import": "2.27.5",
"eslint-plugin-prettier": "4.2.1",
"husky": "8.0.3",
"jest": "29.5.0",
"lint-staged": "13.1.4",
"npm-run-all": "4.1.5",
"prettier": "2.8.4",
"rimraf": "3.0.2",
"ts-jest": "29.0.5",
"ts-node": "10.9.1",
"type-fest": "^4.12.0",
"typescript": "4.9.5"
},
"peerDependencies": {
"type-fest": "^4.12.0"
},
"prettier": "@doist/prettier-config",
"husky": {
"hooks": {
"pre-commit": "npx lint-staged && npm run build"
}
},
"lint-staged": {
"*.{ts,tsx}": "eslint --fix",
"*.{ts,tsx,json,html,yml,yaml,md}": "prettier --check"
},
"files": [
"dist/**/*",
"!dist/**/*.test.js",
"!dist/**/*.test.d.ts"
]
}