-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.69 KB
/
Copy pathpackage.json
File metadata and controls
60 lines (60 loc) · 1.69 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
60
{
"name": "pipelean",
"version": "0.9.0",
"description": "A pragmatic library for sequential async operations with first-class error handling.",
"type": "module",
"license": "MIT",
"homepage": "https://github.com/ildella/pipelean",
"repository": {
"type": "git",
"url": "git://github.com/ildella/pipelean.git"
},
"author": {
"name": "Daniele Dellafiore",
"url": "https://linktr.ee/ildella/"
},
"keywords": [
"configuration",
"project",
"eslint",
"vite",
"vitest"
],
"engines": {
"node": ">22.7"
},
"exports": {
".": "./src/index.js",
"./eslint": "./src/eslint/plugin.js",
"./eslint/config": "./src/eslint/config.js"
},
"files": [
"src",
"skills",
"pipelean-agent.md",
"docs"
],
"scripts": {
"audit": "yarn npm audit",
"audit.prod": "yarn npm audit --recursive --environment production --severity moderate",
"check:lint": "eslint --report-unused-disable-directives .",
"lint": "eslint . --cache --max-warnings 1",
"lint.nocache": "eslint . --max-warnings 1",
"lint.inspect": "npx @eslint/config-inspector",
"test": "vitest",
"coverage": "vitest run --coverage"
},
"packageManager": "yarn@4.18.0+sha512.fcb8716fe7cd0eece141ffc18b92193a9df9204c1ba83189c288835223fc0bbe64af473bab0d5e9927a7daeb5caf2bb07eb2787cc9338ca040ea125f2a1f2f7e",
"devDependencies": {
"@eslint/compat": "2.1.0",
"@eslint/js": "10.0.1",
"@stylistic/eslint-plugin": "5.10.0",
"@stylistic/eslint-plugin-js": "4.4.1",
"@vitest/coverage-v8": "4.1.11",
"@vitest/eslint-plugin": "1.6.27",
"eslint": "10.9.0",
"eslint-nostandard": "1.0.0",
"globals": "17.11.0",
"vitest": "4.1.11"
}
}