-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.49 KB
/
Copy pathpackage.json
File metadata and controls
59 lines (59 loc) · 1.49 KB
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
{
"name": "curf",
"description": "Generate better API documentation for node apps",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"types": "dist/esm/index.d.ts",
"exports": {
".": {
"import": "./dist/esm/index.js",
"require": "./dist/cjs/index.js"
}
},
"scripts": {
"build": "tsc --project tsconfig.esm.json && tsc --project tsconfig.cjs.json",
"test": "jest",
"lint": "eslint --cache --cache-location ./node_modules/.cache/eslint 'src/**/*.{js,ts}'",
"lint_tsc": "npm run lint && tsc --noemit",
"format": "prettier --write 'src/**/*.{js,ts,json}'",
"prepare": "husky install",
"lint-staged": "lint-staged"
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"keywords": [
"url",
"uri"
],
"author": "Genius Chinembiri",
"license": "ISC",
"devDependencies": {
"@eslint/js": "^9.17.0",
"@types/jest": "^29.5.14",
"@typescript-eslint/eslint-plugin": "^8.19.0",
"@typescript-eslint/parser": "^8.19.0",
"eslint": "^9.17.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"globals": "^15.14.0",
"husky": "^9.1.7",
"jest": "^29.7.0",
"lint-staged": "^15.3.0",
"prettier": "^3.4.2",
"ts-jest": "^29.2.5",
"tsd": "^0.31.2",
"typescript": "^5.7.2",
"typescript-eslint": "^8.19.0"
},
"lint-staged": {
"src/**/*.{js,jsx,ts,tsx,md}": [
"prettier --write",
"eslint --fix",
"git add"
]
},
"version": "1.0.0"
}