-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (50 loc) · 1.27 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": "first_koa_app",
"version": "0.0.0-semantically-release",
"description": "Simple app that allows me to logIn and do some CRUD operations",
"main": "app.js",
"scripts": {
"commit": "git-cz",
"start": "node app.js",
"test": "./node_modules/mocha/bin/mocha ./test/test.js -u bdd -R spec",
"semantic-release": "semantic-release pre && npm publish && semantic-release post"
},
"repository": {
"type": "git",
"url": "https://github.com/ccmoralesj/first_koa_application.git"
},
"keywords": [
"koajs",
"koa_app",
"koa",
"app",
"nodejs",
"node"
],
"author": "Cristian Camilo Morales",
"license": "ISC",
"bugs": {
"url": "https://github.com/ccmoralesj/first_koa_application/issues"
},
"homepage": "https://github.com/ccmoralesj/first_koa_application#readme",
"devDependencies": {
"co": "^4.6.0",
"commitizen": "^2.8.1",
"cz-conventional-changelog": "^1.1.6",
"mocha": "^2.4.5",
"semantic-release": "^4.3.5",
"supertest": "^1.1.0"
},
"dependencies": {
"co-body": "^4.0.0",
"koa": "^1.1.2",
"koa-route": "^2.4.2",
"mongoose": "^4.4.3",
"mongoose-cachebox": "^1.2.0"
},
"config": {
"commitizen": {
"path": "node_modules/cz-conventional-changelog"
}
}
}