init
Showing
.gitignore
0 → 100644
.idea/markdown-navigator.xml
0 → 100644
app.js
0 → 100644
package.json
0 → 100644
| { | ||
| "name": "koa-test", | ||
| "version": "1.0.0", | ||
| "description": "Test Koa 2 app", | ||
| "main": "start.js", | ||
| "scripts": { | ||
| "start": "node --use_strict start.js", | ||
| "test": "mocha ./test/app.test.js" | ||
| }, | ||
| "keywords": [ | ||
| "koa", | ||
| "async", | ||
| "mocha", | ||
| "test" | ||
| ], | ||
| "author": "Michael Liao", | ||
| "license": "Apache-2.0", | ||
| "repository": { | ||
| "type": "git", | ||
| "url": "https://github.com/michaelliao/learn-javascript.git" | ||
| }, | ||
| "dependencies": { | ||
| "koa": "2.0.0" | ||
| }, | ||
| "devDependencies": { | ||
| "mocha": "3.0.2", | ||
| "supertest": "3.0.0" | ||
| } | ||
| } |
start.js
0 → 100644
test/app.test.js
0 → 100644
Please
register
or
sign in
to comment