-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
69 lines (69 loc) · 1.62 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
{
"name": "micro-dsf",
"description": "dsf microservice",
"version": "2.1.0",
"license": "MIT",
"private": true,
"author": {
"name": "Jonas Enge",
"email": "[email protected]",
"url": "https://github.com/maccyber"
},
"contributors": [
{
"name": "Geir Gåsodden",
"email": "[email protected]",
"url": "https://github.com/zrrrzzt"
}
],
"main": "index.js",
"engines": {
"node": ">=10.9.0"
},
"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",
"start": "micro",
"now-deploy": "npm test && now --npm -E demo.env && now alias",
"refresh": "rm -rf node_modules && rm package-lock.json && npm install"
},
"keywords": [
"microservice",
"micro",
"dsf",
"Telemark fylkeskommune"
],
"repository": {
"type": "git",
"url": "https://github.com/telemark/micro-dsf.git"
},
"bugs": {
"url": "https://github.com/telemark/micro-dsf/issues"
},
"homepage": "https://github.com/telemark/micro-dsf",
"now": {
"alias": [
"demo.dsf.service.t-fk.no"
],
"type": "npm"
},
"devDependencies": {
"axios": "0.27.2",
"ava": "4.3.1",
"coveralls": "3.1.1",
"nyc": "15.1.0",
"standard": "17.0.0",
"test-listen": "1.1.0"
},
"dependencies": {
"jsonwebtoken": "8.5.1",
"marked": "2.0.7",
"micro": "9.3.4",
"node-dsf": "3.1.0",
"winston": "2.4.6",
"winston-papertrail": "1.0.5"
}
}