-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 974 Bytes
/
package.json
File metadata and controls
41 lines (41 loc) · 974 Bytes
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
{
"name": "hs-collection",
"version": "1.0.0",
"description": "HearthStone Collection",
"main": "index.js",
"scripts": {
"check": "node_modules/.bin/standard",
"test": "set NODE_ENV=test&& mocha",
"dev": "supervisor start.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/PyMonar/hs-collection.git"
},
"keywords": [
"HearthStone"
],
"author": "Monar",
"license": "ISC",
"bugs": {
"url": "https://github.com/PyMonar/hs-collection/issues"
},
"homepage": "https://github.com/PyMonar/hs-collection#readme",
"dependencies": {
"koa": "^2.5.0",
"koa-bodyparser": "^4.2.0",
"koa-router": "^7.4.0",
"koa-static2": "^0.1.8",
"mongorito": "^3.0.4"
},
"devDependencies": {
"koa-logger": "^3.2.0",
"mocha": "^5.0.5",
"should": "^13.2.1",
"standard": "^11.0.0",
"supertest": "^3.0.0"
},
"standard": {
"globals": [ "describe", "it", "before", "after"]
}
}