-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.29 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
{
"name": "cbw",
"version": "1.4.1",
"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 <[email protected]>",
"license": "MIT",
"devDependencies": {
"eslint": "^9.19.0",
"eslint-config-adslot": "^2.0.2",
"globals": "^15.14.0",
"mocha": "^11.0.1",
"prettier": "^3.4.2"
},
"repository": {
"type": "git",
"url": "https://github.com/Adslot/node-cbw.git"
},
"prettier": {
"singleQuote": true,
"trailingComma": "es5",
"arrowParens": "always",
"printWidth": 120
},
"engines": {
"node": "^22"
}
}