-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 940 Bytes
/
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
{
"name": "temis-tag-back",
"version": "0.0.0",
"description": "Temis tag system backend",
"homepage": "sjcdigital.com",
"author": {
"name": "Paulo Luan",
"email": "pauloluan.inova@gmail.com"
},
"main": "./src/app.js",
"devDependencies": {
"babel-eslint": "^8.0.2",
"chai": "^4.1.2",
"mocha": "^4.0.1",
"nyc": "^11.3.0",
"standard": "^10.0.3",
"supertest": "^3.0.0"
},
"scripts": {
"start": "node src/app",
"test": "NODE_ENV=test npm run coverage",
"mocha": "./node_modules/mocha/bin/_mocha \"src/**/*.spec.js\"",
"coverage": "nyc ./node_modules/mocha/bin/_mocha src/**/*.spec.js --reporter=lcov --reporter=text-lcov"
},
"repository": "https://github.com/sjcdigital/temis-tag-back.git",
"license": "MIT",
"dependencies": {
"koa": "^2.4.1",
"koa-bodyparser": "^4.2.0",
"koa-logger": "^3.1.0",
"koa-router": "^7.2.1",
"mongoose": "^4.13.1"
}
}