-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.17 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.17 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
52
{
"name": "ad-hackday",
"version": "0.0.1",
"description": "Hackday challenge",
"main": "src/server.js",
"scripts": {
"coverage": "istanbul cover _mocha -- -R spec",
"esdoc": "esdoc -c .esdoc",
"lint": "eslint src test",
"start": "node ./src/app.js",
"test": "mocha test -u bdd -R spec --ui bdd --recursive"
},
"repository": {
"type": "git",
"url": "https://www.github.com/kaligan/ad-hackday.git"
},
"keywords": [
"hackday"
],
"author": {
"name": "AppCarousel",
"url": "https://www.appcarousel.com"
},
"contributors": [
{
"name": "Matt Nicholson",
"email": "matt.nicholson@appcarousel.com"
},
{
"name": "Aneet Sachdeva",
"email": "aneet.sachdeva@appdirect.com"
}
],
"dependencies": {
"got": "^6.3.0",
"koa": "^1.2.1",
"koa-logger": "^1.3.0",
"koa-route": "^2.4.2",
"moment": "^2.14.1",
"uuid": "^2.0.2"
},
"devDependencies": {
"chai": "^3.5.0",
"dotenv": "^2.0.0",
"eslint": "^3.3.1",
"eslint-config-airbnb-base": "^5.0.3",
"eslint-plugin-import": "^1.14.0",
"istanbul": "^0.4.5",
"mocha": "^3.0.2",
"supertest": "^2.0.0"
}
}