-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 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
41
42
43
44
45
46
47
48
{
"name": "@firefoxic/utils",
"description": "Collection of useful utilities for JavaScript and Node.js.",
"version": "1.0.0",
"license": "MIT",
"author": {
"name": "Sergey Artemov",
"email": "firefoxic.dev@gmail.com"
},
"homepage": "https://github.com/firefoxic/utils#readme",
"bugs": {
"url": "https://github.com/firefoxic/utils/issues"
},
"repository": {
"type": "git",
"url": "git://github.com/firefoxic/utils.git"
},
"type": "module",
"exports": "./lib/index.js",
"files": [
"./lib/"
],
"engines": {
"node": "^20.12 || >=22.11"
},
"packageManager": "pnpm@9.12.3",
"scripts": {
"prepare": "git config core.hooksPath .git-hooks || true",
"lint": "eslint",
"pretest": "pnpm lint",
"test": "node --test",
"preversion": "pnpm test",
"version": "update-changelog",
"postversion": "pnpm publish --provenance --access public --no-git-checks",
"postpublish": "git push --follow-tags"
},
"devDependencies": {
"@firefoxic/eslint-config": "^4.0.0",
"@firefoxic/update-changelog": "^1.0.0",
"eslint": "^9.13.0"
},
"keywords": [
"javascript",
"node.js",
"prepare",
"utils"
]
}