-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
123 lines (123 loc) · 3.2 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
{
"name": "axios-date-transformer",
"version": "1.2.1",
"description": "An Axios transformer for seamlessly converting ISO 8601 formatted date strings with millisecond precision to JavaScript Date objects. Simplify handling of Date objects in JSON responses with this lightweight utility.",
"files": [
"dist",
"LICENSE",
"README.md"
],
"scripts": {
"prebuild": "rimraf dist",
"build": "tsc",
"prepare": "husky install",
"test": "jest",
"test:coverage": "jest --coverage",
"lint": "eslint . --cache",
"lint:fix": "eslint . --cache --fix",
"release": "release-it"
},
"keywords": [
"axios",
"transformer",
"date",
"date-fns",
"json",
"iso8601"
],
"homepage": "https://github.com/angelxmoreno/axios-date-transformer",
"bugs": {
"url": "https://github.com/angelxmoreno/axios-date-transformer/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/angelxmoreno/axios-date-transformer.git"
},
"types": "dist/index.d.ts",
"main": "dist/index.js",
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org"
},
"engines": {
"node": ">=18",
"yarn": ">=1.0.0"
},
"author": "Angel S. Moreno <[email protected]>",
"license": "MIT",
"private": false,
"dependencies": {
"axios": "^1.6.6",
"tslib": "^2.6.2"
},
"devDependencies": {
"@commitlint/cli": "^18.5.0",
"@commitlint/config-conventional": "^18.5.0",
"@types/jest": "^29.5.11",
"@types/node": "^20.11.6",
"axios-mock-adapter": "^1.22.0",
"eslint": "^8.56.0",
"eslint-config-universe": "^12.0.0",
"husky": "^9.0.6",
"jest": "^29.7.0",
"lint-staged": "^15.2.0",
"prettier": "^3.2.4",
"release-it": "^17.0.3",
"rimraf": "^5.0.5",
"ts-jest": "^29.1.2",
"typescript": "^5.3.3"
},
"eslintConfig": {
"root": true,
"ignorePatterns": [
"**/dist/**"
],
"extends": [
"universe"
],
"parser": "@typescript-eslint/parser",
"overrides": [
{
"files": [
"*.json"
],
"rules": {
"no-unused-expressions": "off"
}
}
],
"rules": {}
},
"prettier": {
"singleQuote": true,
"trailingComma": "all",
"arrowParens": "avoid",
"semi": true,
"useTabs": false,
"tabWidth": 4,
"printWidth": 120
},
"lint-staged": {
"*.{ts,json}": "eslint --fix"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "node"
},
"release-it": {
"git": {
"commitMessage": "chore: release v${version}"
},
"github": {
"release": true
},
"hooks": {
"before:init": "yarn build"
}
}
}