-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
83 lines (83 loc) · 1.95 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
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
{
"name": "analytics",
"description": "Microservice to retrieve your CloudFlare Analytics.",
"homepage": "https://github.com/microlinkhq/analytics",
"version": "0.0.0",
"main": "src/index.js",
"author": {
"email": "josefrancisco.verdu@gmail.com",
"name": "Kiko Beats",
"url": "https://kikobeats.com"
},
"repository": {
"type": "git",
"url": "git+https://github.com/microlinkhq/analytics.git"
},
"bugs": {
"url": "https://github.com/microlinkhq/analytics/issues"
},
"keywords": [
"analytics",
"microlink",
"requests"
],
"dependencies": {
"calc-percent": "~1.0.1",
"date-fns": "~4.1.0",
"debug-logfmt": "~1.2.0",
"got": "~11.8.6",
"human-number": "~2.0.4",
"p-reflect": "~2.1.0",
"p-timeout": "~4.1.0",
"pretty-bytes": "~5.6.0"
},
"devDependencies": {
"@commitlint/cli": "latest",
"@commitlint/config-conventional": "latest",
"@ksmithut/prettier-standard": "latest",
"ava": "latest",
"finepack": "latest",
"nano-staged": "latest",
"simple-git-hooks": "latest",
"standard": "latest",
"standard-markdown": "latest"
},
"engines": {
"node": ">= 12"
},
"files": [
"src"
],
"scripts": {
"build": "untracked > .nowignore",
"clean": "rm -rf node_modules",
"dev": "TZ=UTC NODE_ENV=development DEBUG=analytics* node src/server.js",
"lint": "standard-markdown README.md && standard",
"pretest": "npm run lint",
"start": "TZ=UTC NODE_ENV=production DEBUG=analytics* node index.js",
"test": "ava"
},
"private": true,
"license": "MIT",
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"nano-staged": {
"*.js": [
"prettier-standard",
"standard --fix"
],
"*.md": [
"standard-markdown"
],
"package.json": [
"finepack"
]
},
"simple-git-hooks": {
"commit-msg": "npx commitlint --edit",
"pre-commit": "npx nano-staged"
}
}