-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 893 Bytes
/
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
{
"name": "npsh",
"version": "2.0.7",
"description": "Node.js package scripts helper",
"bin": {
"npsh": "./lib/index.js"
},
"files": [
"lib"
],
"scripts": {
"format": "prettier --write '**/*.{js,json,md,yml,yaml}'",
"format:check": "prettier -l '**/*.{js,json,md,yml,yaml}'",
"spell": "cspell '**/*'",
"svc": "./lib/index.js svc andr-ll npsh master",
"test": "jest --coverage"
},
"repository": {
"type": "git",
"url": "[email protected]:andr-ll/npsh.git"
},
"keywords": [
"nodejs",
"package helper",
"javascript",
"ci",
"scripts"
],
"author": "Andrii Lytovchenko <[email protected]>",
"license": "MIT",
"devDependencies": {
"@types/jest": "^29.5.12",
"cspell": "^8.8.0",
"jest": "^29.7.0",
"prettier": "^3.3.1"
},
"dependencies": {
"reqex": "^1.0.1",
"vator": "^1.2.0"
}
}