-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1.32 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
{
"name": "chigai-mock-server",
"version": "1.0.2",
"description": "Chigai: modern visual regression testing. A mock server module for internal tests only.",
"main": "./app/main.js",
"engines": {
"node": ">=8.5.5"
},
"repository": {
"type": "git",
"url": "https://github.com/martinkr/chigai-mock-server"
},
"homepage": "https://github.com/martinkr/chigai-mock-server",
"issues": "https://github.com/martinkr/chigai-mock-server/issues",
"author": "Martin Krause <[email protected]> (http://martinkr.github.io)",
"license": "MIT",
"scripts": {
"eslint": "./node_modules/.bin/eslint ./app/**/*.js",
"start": "node ./app/main.js",
"develop": "nodemon ./app/main.js",
"mocha": "./node_modules/mocha/bin/mocha",
"nyc": "./node_modules/.bin/nyc --clean ./node_modules/.bin/mocha",
"coverage": "./node_modules/.bin/nyc check-coverage --lines 100 --functions 100 --branches 100 --statements 100",
"report": "./node_modules/.bin/nyc report --reporter=lcov --reporter=html",
"test": "yarn eslint && yarn nyc && yarn report && yarn coverage"
},
"dependencies": {
"koa": "^2.3.0",
"koa-route": "^3.2.0"
},
"devDependencies": {
"chai": "4.1.1",
"eslint": "4.4.1",
"mocha": "3.5.0",
"nodemon": "^1.12.1",
"nyc": "^11.2.1",
"supertest": "^3.0.0"
}
}