This repository was archived by the owner on Aug 5, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.42 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.42 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
{
"name": "micro-stats",
"description": "Stats",
"version": "3.0.2",
"license": "MIT",
"private": true,
"author": {
"name": "Geir Gåsodden",
"email": "geir.gasodden@pythonia.no",
"url": "https://github.com/zrrrzzt"
},
"main": "index.js",
"engines": {
"node": ">=10.16.3"
},
"scripts": {
"test": "standard && npm audit && ava",
"test-offline": "standard && ava",
"coverage": "nyc ava",
"coveralls": "nyc ava && nyc report --reporter=lcov && cat coverage/lcov.info | coveralls",
"standard-fix": "standard --fix",
"dev": "now dev",
"deploy": "npm test && now --prod && rm -rf .vercel",
"deploy:prod": "npm test && now --local-config now-prod.json --prod --confirm && rm -rf .vercel",
"deploy:test": "npm test && now --local-config now-test.json --prod --confirm && rm -rf .vercel",
"refresh": "rm -rf node_modules && rm package-lock.json && npm install"
},
"keywords": [
"microservice",
"stats",
"Telemark fylkeskommune"
],
"repository": {
"type": "git",
"url": "https://github.com/telemark/micro-stats.git"
},
"bugs": {
"url": "https://github.com/telemark/micro-stats/issues"
},
"homepage": "https://github.com/telemark/micro-stats#readme",
"devDependencies": {
"ava": "5.1.0",
"coveralls": "3.1.1",
"nyc": "15.1.0",
"standard": "17.0.0"
},
"dependencies": {
"jsonwebtoken": "8.5.1",
"mongodb": "3.5.11"
}
}