-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
100 lines (100 loc) · 2.47 KB
/
Copy pathpackage.json
File metadata and controls
100 lines (100 loc) · 2.47 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
{
"name": "express-maintenance-mode",
"description": "Express middleware that allows you to put the server(s) in maintenance mode",
"version": "1.1.0",
"author": "George Lykuanov <dmail@eml.cc> ()",
"ava": {
"extensions": [
"ts"
],
"require": [
"ts-node/register"
]
},
"bugs": {
"url": "https://github.com/dissfall/express-maintenance-mode/issues",
"email": "dmail@eml.cc"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"contributors": [
"George Lykuanov <dmail@eml.cc> ()"
],
"dependencies": {},
"devDependencies": {
"@commitlint/cli": "latest",
"@commitlint/config-conventional": "latest",
"@istanbuljs/nyc-config-typescript": "^1.0.1",
"@types/express": "^4.17.11",
"@types/sinon": "^10.0.0",
"ava": "latest",
"codecov": "latest",
"cross-env": "latest",
"cz-conventional-changelog": "3.3.0",
"eslint": "latest",
"eslint-config-xo-lass": "latest",
"fixpack": "^4.0.0",
"husky": "^6.0.0",
"lint-staged": "latest",
"microbundle": "^0.13.0",
"nyc": "^15.1.0",
"remark-cli": "latest",
"remark-preset-github": "latest",
"sinon": "^10.0.0",
"source-map-support": "^0.5.19",
"standard-version": "^9.2.0",
"ts-node": "^9.1.1",
"xo": "latest"
},
"engines": {
"node": ">= 10"
},
"homepage": "https://github.com/dissfall/express-maintenance-mode",
"keywords": [
"express",
"maintain",
"maintenance",
"middleware"
],
"license": "Apache-2.0",
"main": "dist/index.js",
"peerDependencies": {
"express": "^4.17.1"
},
"repository": {
"type": "git",
"url": "https://github.com/dissfall/express-maintenance-mode"
},
"scripts": {
"build": "microbundle",
"lint": "yarn run lint:ts && yarn run lint:md",
"lint:md": "remark . -fo",
"lint:ts": "xo --fix",
"prepare": "husky install",
"pretest": "yarn lint",
"release": "standard-version",
"test": "ava",
"test:coverage": "nyc ava",
"test:nolint": "ava",
"test:watch": "ava --watch"
},
"source": "src/index.ts",
"types": "dist/index.d.ts",
"xo": {
"prettier": true,
"space": true,
"extends": [
"xo-lass"
],
"rules": {
"unicorn/filename-case": "off",
"new-cap": "off",
"no-template-curly-in-string": "off",
"@typescript-eslint/class-literal-property-style": "off",
"@typescript-eslint/member-ordering": "off"
}
}
}