This repository has been archived by the owner on Dec 12, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
54 lines (54 loc) · 1.51 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
53
54
{
"name": "domain-redirects",
"version": "1.0.4",
"private": true,
"description": "Redirects for my (currently unused) domains – made with micro – deployed on ZEIT Now",
"bugs": "https://github.com/4cm4k1/domain-redirects/issues",
"repository": "https://github.com/4cm4k1/domain-redirects",
"license": "MIT",
"author": "Anthony Maki (https://anthony.codes) <[email protected]>",
"contributors": [
"Anthony Maki (https://anthony.codes) <[email protected]>"
],
"main": "index.js",
"scripts": {
"coverage": "nyc report --reporter=text-lcov > coverage/lcov.info",
"dev": "micro-dev",
"prettier": "prettier {*,**/*}.{babelrc,html,js,json,jsx,md,mdx,scss} --write",
"report-coverage": "env-cmd codecov --disable=gcov --file=coverage/lcov.info",
"test": "nyc --check-coverage --lines 100 ava"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged && yarn test",
"pre-push": "yarn coverage && yarn report-coverage"
}
},
"dependencies": {
"micro": "^9.3.5-canary.3"
},
"devDependencies": {
"@types/node": "^12.7.2",
"@types/supertest": "^2.0.8",
"ava": "2.3.0",
"codecov": "^3.5.0",
"env-cmd": "^9.0.3",
"husky": "^4.0.0-beta.1",
"nyc": "^14.1.1",
"prettier": "^1.18.2",
"pretty-quick": "^1.11.1",
"supertest": "^4.0.2"
},
"renovate-config": {
"assignees": [
"4cm4k1"
],
"extends": [
"config:base",
":pinAllExceptPeerDependencies"
],
"labels": [
"renovate"
]
}
}