-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 766 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 766 Bytes
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
{
"name": "@witzbould/utils",
"private": true,
"description": "JavaScript utility functions",
"author": "Tom Kopp",
"license": "ISC",
"repository": {
"type": "git",
"url": "git+https://github.com/TomKopp/utils.git"
},
"bugs": {
"url": "https://github.com/TomKopp/utils/issues"
},
"homepage": "https://github.com/TomKopp/utils#readme",
"scripts": {
"lint": "eslint -f=table \"./packages/**/*.js\"",
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js"
},
"type": "module",
"workspaces": [
"packages/*"
],
"devDependencies": {
"eslint": "9.10.0",
"eslint-formatter-table": "7.32.1",
"eslint-plugin-import-x": "4.2.1",
"eslint-plugin-jsdoc": "50.2.3",
"jest": "29.7.0"
}
}