-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1.11 KB
/
package.json
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
{
"name": "jscommon",
"version": "0.0.1",
"description": "Reusable CJS and ESM code",
"author": "[email protected]",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/es-labs/jscommon.git"
},
"bugs": {
"url": "https://github.com/es-labs/jscommon/issues"
},
"homepage": "https://github.com/es-labs/jscommon#readme",
"keywords": [
"nodejs",
"esm",
"common JS"
],
"scripts": {
"git:hash": "git rev-parse --verify --short HEAD",
"git:branch": "git rev-parse --abbrev-ref HEAD",
"patch:node": "npm version patch --workspace=libs/node",
"patch:esm": "npm version patch --workspace=libs/esm",
"pub:node": "npm publish --access public --workspace=libs/node",
"pub:esm": "npm publish --access public --workspace=libs/esm",
"lint": "eslint . --ext .js",
"lint:fix": "eslint --fix --no-fix-warnings --no-report-warnings .",
"update-commit-hash": "git rev-parse --verify --short HEAD > commit-hash"
},
"engines": {
"node": ">=22",
"npm": ">=10"
},
"workspaces": [
"libs/*",
"tools/*"
],
"private": true
}