-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
53 lines (53 loc) · 1.26 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
{
"name": "kor-client",
"version": "1.0.1",
"description": "Module for retreiving data from kontakt- og reservasjonsregisteret",
"main": "index.js",
"files": [
"index.js",
"lib"
],
"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"
},
"keywords": [],
"author": {
"name": "Jonas Maccyber Enge",
"email": "jonas.enge@gmail.com",
"url": "https://github.com/maccyber"
},
"contributors": [
{
"name": "Geir Gåsodden",
"email": "geir.gasodden@pythonia.no",
"url": "https://github.com/zrrrzzt"
}
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/telemark/kor-client.git"
},
"bugs": {
"url": "https://github.com/telemark/kor-client/issues"
},
"homepage": "https://github.com/telemark/kor-client#readme",
"dependencies": {
"axios": "0.19.2",
"jsonwebtoken": "8.5.1",
"uuid": "7.0.3"
},
"devDependencies": {
"ava": "5.1.0",
"coveralls": "3.1.1",
"nyc": "15.1.0",
"standard": "17.0.0"
},
"engines": {
"node": ">=10.14.2"
}
}