-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.27 KB
/
Copy pathpackage.json
File metadata and controls
55 lines (55 loc) · 1.27 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
{
"name": "ifty",
"version": "1.2.0",
"description": "Matches through piped operations",
"type": "module",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
},
"./package.json": "./package.json"
},
"typesVersions": {
"*": {
"*": [
"dist/*.d.ts"
]
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/DominicVonk/ifty.git"
},
"scripts": {
"lint": "eslint 'src/**/*.ts'",
"lint:report": "eslint 'src/**/*.ts' -f json -o report.json --no-fix",
"lint:fix": "eslint 'src/**/*.ts' --fix",
"test": "vitest",
"test:ui": "vitest --ui",
"build": "tsup",
"prepublish": "tsup"
},
"author": "Dominic Vonk",
"license": "MIT",
"devDependencies": {
"@total-typescript/ts-reset": "^0.5.1",
"@types/eslint": "^8.44.2",
"@typescript-eslint/eslint-plugin": "^6.6.0",
"@typescript-eslint/parser": "^6.6.0",
"@vitest/coverage-v8": "^0.34.4",
"@vitest/ui": "^0.34.4",
"eslint": "^8.49.0",
"eslint-config-prettier": "^9.0.0",
"prettier": "^3.0.3",
"tsup": "^7.2.0",
"typescript": "^5.2.2",
"vitest": "^0.34.4"
},
"files": [
"dist",
"package.json",
"README.md"
]
}