-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 2.06 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
{
"name": "@octocloud/generators",
"version": "1.0.9",
"description": "",
"license": "MIT",
"author": "",
"homepage": "https://github.com/octotravel/octo-generator#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/octotravel/octo-generator.git"
},
"bugs": {
"url": "https://github.com/octotravel/octo-generator/issues"
},
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"build:dry": "tsc --noEmit",
"check": "npm run build:dry && npm run format:check && npm run lint",
"checks": "npm run format && npm run lint && npm run test",
"fix": "npm run format:package && npm run format && npm run lint:fix",
"fix:staged": "npx lint-staged",
"format": "prettier . '!./ops' --write",
"format:check": "prettier . '!./ops' --check",
"format:package": "prettier-package-json --write",
"lint": "eslint . --ext .ts",
"lint:fix": "eslint . --ext .ts --fix",
"prepare": "npm run build && husky install",
"test": "jest --verbose",
"test-coverage": "jest --coverage"
},
"types": "dist/index.d.ts",
"dependencies": {
"@octocloud/types": "^1.5.20",
"date-fns": "^2.29.1",
"date-fns-tz": "^1.3.6",
"uuid": "^9.0.0"
},
"devDependencies": {
"@octocloud/validators": "^1.0.2",
"@types/jest": "^29.4.0",
"@types/uuid": "^9.0.0",
"@typescript-eslint/eslint-plugin": "6.18.1",
"@typescript-eslint/parser": "6.18.1",
"eslint": "8.56.0",
"eslint-config-airbnb-base": "15.0.0",
"eslint-config-airbnb-typescript": "17.1.0",
"eslint-config-prettier": "9.1.0",
"eslint-config-standard-with-typescript": "43.0.0",
"eslint-plugin-import": "2.29.1",
"eslint-plugin-unused-imports": "3.0.0",
"husky": "8.0.3",
"jest": "^29.4.1",
"lint-staged": "15.2.0",
"prettier": "3.1.1",
"prettier-package-json": "2.8.0",
"ts-jest": "^29.0.5",
"typescript": "5.3.3"
},
"keywords": [],
"lint-staged": {
"./package.json": "npm run format:package",
"*": "npm run format",
"*.(ts|js)": [
"npm run lint:fix"
]
}
}