forked from maccyber/micro-bigfive-results
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 1.45 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
{
"name": "micro-bigfive-results",
"description": "micro webservice that serves bigfive results",
"version": "1.0.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": ">=7.6.0"
},
"scripts": {
"test": "standard && nsp check && ava",
"test-offline": "standard && ava",
"coverage": "nyc ava",
"coveralls": "nyc ava && nyc report --reporter=lcov && cat coverage/lcov.info | coveralls",
"setup": "npm install",
"standard-fix": "standard --fix",
"start": "micro -p 3005"
},
"keywords": [
"microservice",
"micro",
"bigfive"
],
"repository": {
"type": "git",
"url": "https://github.com/maccyber/micro-bigfive-results.git"
},
"bugs": {
"url": "https://github.com/maccyber/micro-bigfive-results/issues"
},
"devDependencies": {
"ava": "0.18.2",
"axios": "0.15.3",
"coveralls": "2.11.15",
"nsp": "2.6.2",
"nyc": "10.1.2",
"standard": "8.6.0",
"test-listen": "1.0.1"
},
"dependencies": {
"marked": "0.3.6",
"micro": "7.0.6"
},
"now": {
"alias": "results.bigfive.maccyber.io",
"env": {
"NODE_ENV": "production"
},
"type": "npm"
}
}