-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
77 lines (77 loc) · 2.09 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
76
77
{
"author": "Kamar Mack <https://github.com/kamarmack>",
"bugs": "https://github.com/kamarmack/ergonomic/issues",
"dependencies": {
"@google-cloud/storage": "^7.4.0",
"change-case": "^4.1.2",
"google-libphonenumber": "^3.2.31",
"ky-universal": "^0.12.0",
"luxon": "^2.3.2",
"ramda": "^0.29.1",
"semver": "^7.3.5",
"uuid": "^8.3.2",
"validator": "^13.7.0",
"xstate": "^4.38.2",
"yup": "^0.32.11"
},
"description": "Helper types and functions for TypeScript repos",
"devDependencies": {
"@types/google-libphonenumber": "^7.4.23",
"@types/jest": "^27.4.1",
"@types/luxon": "^2.3.2",
"@types/node": "^18.11.9",
"@types/ramda": "^0.29.12",
"@types/semver": "^7.3.9",
"@types/uuid": "^8.3.2",
"@types/validator": "^13.7.0",
"@typescript-eslint/eslint-plugin": "^5.15.0",
"@typescript-eslint/parser": "^5.15.0",
"autochangelog": "^3.0.3",
"autoprefixer": "^10.4.13",
"cross-env": "^7.0.3",
"doctoc": "^2.2.0",
"env-cmd": "^10.1.0",
"eslint": "^8.11.0",
"eslint-config-prettier": "^8.5.0",
"eslint-import-resolver-typescript": "^2.5.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-jest": "^26.1.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.0.0",
"husky": "^8.0.0",
"jest": "^29.5.0",
"prettier": "2.5.1",
"ts-jest": "^29.1.0",
"typescript": "^5.4.5"
},
"engines": {
"node": "20"
},
"files": [
"**/*"
],
"homepage": "https://github.com/kamarmack/ergonomic",
"keywords": [
"functional",
"typescript"
],
"license": "ISC",
"main": "./index.js",
"name": "ergonomic",
"repository": {
"type": "git",
"url": "git://github.com/kamarmack/ergonomic.git"
},
"scripts": {
"build": "tsc --build ./tsconfig.json",
"clean": "tsc --build --clean ./tsconfig.json",
"format": "doctoc . && prettier --write .",
"lint": "eslint . --ext .ts",
"prepare": "(husky install && chmod +x .husky/*) || true",
"test": "NODE_OPTIONS=--experimental-vm-modules npx jest --config='./jest.config.json' --verbose",
"watch": "tsc --build --watch ./tsconfig.json"
},
"type": "module",
"types": "./index.d.ts",
"version": "0.5.8"
}