forked from newrelic/node-newrelic-koa
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.04 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
{
"name": "@newrelic/koa",
"version": "4.0.0",
"description": "Koa instrumentation for the New Relic Node agent",
"main": "index.js",
"directories": {
"lib": "lib",
"test": "tests"
},
"scripts": {
"test": "npm run unit && npm run versioned",
"unit": "tap tests/unit/**/*.tap.js --no-coverage",
"versioned": "versioned-tests --minor -i 2 'tests/versioned/*.tap.js'",
"lint": "eslint *.js lib tests"
},
"author": "New Relic Node.js agent team <[email protected]>",
"license": "Apache-2.0",
"engines": {
"node": ">=8.0.0"
},
"devDependencies": {
"@koa/router": "^8.0.0",
"@newrelic/test-utilities": "^4.0.0",
"eslint": "^5.8.0",
"koa": "^2.6.1",
"koa-route": "^3.2.0",
"koa-router": "^7.4.0",
"newrelic": "^6.11.0",
"semver": "^5.7.1",
"tap": "^14.10.7"
},
"dependencies": {
"methods": "^1.1.2"
},
"peerDependencies": {
"newrelic": ">=6.11.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/newrelic/node-newrelic-koa.git"
}
}