-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.26 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.26 KB
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
{
"name": "cbw",
"version": "1.5.0",
"description": "callback wrapper",
"main": "index.js",
"scripts": {
"format": "prettier ''**/*.js' --write",
"lint:eslint": "eslint '**/*.js'",
"lint:prettier": "prettier '**/*.js' --check",
"lint": "npm run lint:eslint && npm run lint:prettier",
"test": "mocha -R spec",
"postversion": "git push -u origin $(git rev-parse --abbrev-ref HEAD) --follow-tags && npm publish && echo '…released.'",
"preversion": "echo 'Releasing…' && npm ci",
"release:major": "npm version major -m 'build: release major version %s'",
"release:minor": "npm version minor -m 'build: release minor version %s'",
"release:patch": "npm version patch -m 'build: release patch version %s'"
},
"keywords": [
"callback",
"wrapper",
"err"
],
"author": "Dmitry Shirokov <deadrunk@gmail.com>",
"license": "MIT",
"devDependencies": {
"eslint": "^9.39.4",
"eslint-config-adslot": "^2.2.1",
"mocha": "^11.7.5",
"prettier": "^3.8.1"
},
"repository": {
"type": "git",
"url": "https://github.com/Adslot/node-cbw.git"
},
"prettier": {
"singleQuote": true,
"trailingComma": "es5",
"arrowParens": "always",
"printWidth": 120
},
"engines": {
"node": "^24"
}
}