-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1.35 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
{
"name": "koa-async-conditional-get",
"private": true,
"version": "0.1.2",
"description": "Async conditional get support for Koa responses",
"main": "index.js",
"scripts": {
"clean": "rimraf release coverage",
"test": "NODE_ENV=test ./node_modules/.bin/_mocha --compilers js:babel/register",
"test-cov": "NODE_ENV=test node ./node_modules/.bin/istanbul cover ./node_modules/.bin/_mocha -- --compilers js:babel/register",
"test-travis": "NODE_ENV=test node ./node_modules/.bin/istanbul cover ./node_modules/.bin/_mocha --report lcovonly -- --compilers js:babel/register",
"build": "./node_modules/.bin/babel ./src --out-dir ./release"
},
"author": "Pierre Brouca <[email protected]> (https://github.com/broucz)",
"license": "MIT",
"homepage": "https://github.com/broucz/koa-conditional-get#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/broucz/koa-conditional-get.git"
},
"bugs": {
"url": "https://github.com/broucz/koa-conditional-get/issues"
},
"keywords": [
"koa",
"confitional-get",
"async"
],
"devDependencies": {
"babel": "^5.8.23",
"babel-runtime": "^5.8.25",
"chai": "^3.4.0",
"istanbul": "^0.4.0",
"koa": "^2.0.0 || ^2.0.0-alpha.1",
"koa-async-etag": "^0.1.0",
"mocha": "^2.3.3",
"rimraf": "^2.4.3",
"supertest": "^1.1.0"
}
}