-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
25 lines (25 loc) · 974 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
{
"name": "koatest",
"version": "1.0.0",
"description": "Testing Koa app in VSTS",
"main": "src/main.js",
"scripts": {
"test": "mocha --reporter mocha-junit-reporter --reporter-options mochaFile=./test-results/unit-tests/results.xml",
"test-mocha": "mocha --reporter mocha-junit-reporter --reporter-options mochaFile=./test-results/unit-tests/results.xml",
"test-mocha-av": "mocha --reporter mocha-appveyor-reporter --reporter-options appveyorBatchSize=1 || exit 0",
"test-mocha-tap": "mocha --reporter tap || exit 0",
"test-vsts": "mocha --reporter vsts-reporter --reporter-options realtime=true mochaFile=./test-results/unit-tests/results.xml",
"test-tape-av": "node ./test/tapetest.js || exit 0"
},
"author": "Rishav Sharan",
"license": "ISC",
"dependencies": {
"koa": "^2.5.2"
},
"devDependencies": {
"mocha": "^5.2.0",
"mocha-junit-reporter": "^1.17.0",
"tap-appveyor": "^0.1.0",
"tape": "^4.9.1"
}
}