-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
52 lines (52 loc) · 1.53 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
49
50
51
52
{
"name": "express-params-handler",
"version": "1.4.1",
"description": "Express.js params handler",
"main": "index.js",
"devDependencies": {
"eslint": "^9.19.0",
"eslint-config-adslot": "^2.0.2",
"express": "^4.21.2",
"globals": "^15.14.0",
"mocha": "^11.0.1",
"prettier": "^3.4.2",
"supertest": "^7.0.0"
},
"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 --recursive",
"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'"
},
"repository": {
"type": "git",
"url": "https://github.com/Adslot/node-express-params-handler"
},
"keywords": [
"express-params",
"express-validation"
],
"author": "Dmitry Shirokov <deadrunk@gmail.com>",
"contributors": [
"Dmitry Kirilyuk @Jokero"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/Adslot/node-express-params-handler/issues"
},
"prettier": {
"singleQuote": true,
"trailingComma": "es5",
"arrowParens": "always",
"printWidth": 120
},
"engines": {
"node": "^22"
}
}