-
Notifications
You must be signed in to change notification settings - Fork 39
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.07 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.07 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
{
"name": "nodejs-toolbox-catalog",
"version": "1.17.4",
"description": "Catalog of categories and packages for Node.js Toolbox",
"private": false,
"type": "module",
"author": "Maxim Orlov <hello@maximorlov.com> (https://github.com/Maximization)",
"license": "MIT",
"main": "index.js",
"engines": {
"node": "24.x"
},
"repository": {
"type": "git",
"url": "https://github.com/Maximization/nodejs-toolbox-catalog"
},
"scripts": {
"prettier": "prettier --write .",
"test": "npm run test:prettier && npm run test:eslint && npm run test:jest",
"test:prettier": "prettier --check .",
"test:eslint": "eslint .",
"test:jest": "NODE_OPTIONS=--experimental-vm-modules jest",
"release": "np"
},
"files": [
"index.js",
"src/*"
],
"dependencies": {
"debug": "4.3.4"
},
"devDependencies": {
"ajv": "8.12.0",
"all-the-package-names": "2.0.1662",
"eslint": "8.34.0",
"eslint-config-prettier": "8.6.0",
"eslint-plugin-jest": "27.2.1",
"jest": "29.4.3",
"np": "10.0.7",
"prettier": "2.8.4"
}
}