-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.38 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
{
"name": "micro-loki-store",
"description": "Microservice for storing content with loki",
"version": "2.0.19",
"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.15.0"
},
"scripts": {
"test": "standard && npm audit && tap --reporter=spec test/**/*.js",
"test-offline": "standard && tap --reporter=spec test/**/*.js",
"coverage": "tap test/**/*.js --coverage",
"coveralls": "tap --cov --coverage-report=lcov test/**/*.js && cat coverage/lcov.info | coveralls",
"standard-fix": "standard --fix",
"start": "micro",
"deploy": "npm test && now --npm && now alias",
"refresh": "rm -rf node_modules && rm package-lock.json && npm install"
},
"keywords": [
"microservice",
"micro",
"store",
"loki",
"Telemark fylkeskommune"
],
"repository": {
"type": "git",
"url": "https://github.com/telemark/micro-loki-store.git"
},
"bugs": {
"url": "https://github.com/telemark/micro-loki-store/issues"
},
"homepage": "https://github.com/telemark/micro-loki-store#README",
"devDependencies": {
"coveralls": "3.0.3",
"standard": "12.0.1",
"tap": "13.1.7"
},
"dependencies": {
"lokijs": "1.5.6",
"marked": "0.6.2",
"micro": "9.3.4"
}
}