-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
48 lines (48 loc) · 1.33 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
44
45
46
47
48
{
"name": "@articulate/koala",
"version": "1.1.0",
"description": "Converts a Paperplane handler function into Koa v2 middleware",
"main": "index.js",
"author": "[email protected]",
"license": "MIT",
"repository": "https://github.com/articulate/paperplane-koa.git",
"scripts": {
"coverage": "nyc report --reporter=text-lcov | coveralls",
"lint": "eslint .",
"test": "mocha",
"test:ci": "yarn run lint && yarn run test:coverage && yarn run coverage",
"test:coverage": "nyc yarn run test"
},
"dependencies": {
"cookie": "^0.4.0",
"koa-compose": "^4.1.0",
"koa-conditional-get": "^2.0.0",
"koa-etag": "^3.0.0",
"qs": "^6.9.1",
"ramda": "^0.26.1"
},
"peerDependencies": {
"koa": "^2.11.0"
},
"devDependencies": {
"@articulate/funky": "^1.9.0",
"@articulate/spy": "^0.0.1",
"@hapi/boom": "^8.0.1",
"chai": "^4.2.0",
"coveralls": "^3.0.9",
"eslint": "^6.7.2",
"eslint-config-standard": "^14.1.0",
"eslint-plugin-import": "^2.19.1",
"eslint-plugin-node": "^10.0.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"http-errors": "^1.7.3",
"joi": "^14.3.1",
"koa": "2.x",
"koa-router": "^7.4.0",
"mocha": "^6.2.2",
"nyc": "^15.0.0",
"string-to-stream": "^3.0.1",
"supertest": "^4.0.2"
}
}