-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.34 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
41
42
43
{
"name": "koa-async-etag",
"private": true,
"version": "0.1.0",
"description": "Async ETag 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-async-etag#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/broucz/koa-async-etag.git"
},
"bugs": {
"url": "https://github.com/broucz/koa-async-etag/issues"
},
"keywords": [
"koa",
"ETag",
"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",
"mocha": "^2.3.3",
"rimraf": "^2.4.3",
"supertest": "^1.1.0"
},
"dependencies": {
"etag": "^1.7.0",
"mz": "^2.1.0"
}
}