-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 1.16 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
{
"name": "@fab1o/node-utility",
"version": "2.4.1",
"description": "A swiss-knife Library for Node applications.",
"main": "src/index.js",
"author": {
"name": "Fabio Costa",
"url": "https://github.com/fab1o"
},
"private": false,
"scripts": {
"start": "node ./index.js",
"docs": "jsdoc2md src/**/*.js > docs.md",
"test": "jest --runInBand",
"lint": "eslint . --ext .js",
"package": "npm i && npm test && npm run dts && npm run docs && npm run lint:fix",
"lint:fix": "prettier --ignore-path \".prettierignore\" --write \"./**/*.{js,ts,json,md}\" && eslint . --ext .js --fix",
"dts": "npx -p typescript tsc ./src/index.js --declaration --allowJs --emitDeclarationOnly --outDir types"
},
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"bugs": "https://github.com/fab1o/node-utility/issues",
"homepage": "https://github.com/fab1o/node-utility",
"engines": {
"node": ">= 10"
},
"devDependencies": {
"@fab1o/eslint-config-base": "1.3.2",
"jest": "29.7.0",
"jsdoc-to-markdown": "8.0.1"
},
"dependencies": {
"chalk": "4.1.2"
},
"license": "MIT",
"types": "types/index.d.ts"
}