-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.25 KB
/
Copy pathpackage.json
File metadata and controls
49 lines (49 loc) · 1.25 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
{
"name": "lib-template",
"version": "0.2.0",
"description": "JavaScript library template.",
"type": "module",
"license": "MIT",
"homepage": "https://github.com/ildella/lib-template",
"repository": {
"type": "git",
"url": "git://github.com/ildella/lib-template.git"
},
"author": {
"name": "Daniele Dellafiore",
"url": "https://linktr.ee/ildella/"
},
"keywords": [
"configuration",
"project",
"eslint",
"vite",
"vitest"
],
"engines": {
"node": "^22.0.0 || ^24.0.0"
},
"exports": {
".": "./src/index.js"
},
"files": [
"src"
],
"scripts": {
"check:lint": "eslint --report-unused-disable-directives .",
"lint": "eslint . --cache --max-warnings 0",
"lint.nocache": "eslint . --max-warnings 0",
"lint.inspect": "npx @eslint/config-inspector",
"test": "vitest",
"coverage": "vitest run --coverage"
},
"packageManager": "yarn@4.17.0+sha512.c2957de2f9025ab14d63b24d0d8be1f1655810e22c341042c27f7ecd017b180ec12db73d69ac366d71b304ef9f069349ce462de96f04f8f1da317f4f762c95ae",
"devDependencies": {
"@eslint/compat": "2.1.0",
"@eslint/js": "9.39.4",
"@vitest/eslint-plugin": "1.6.20",
"eslint": "9.39.4",
"eslint-nostandard": "0.8.0",
"vitest": "4.1.9"
}
}