forked from newrelic/node-newrelic-koa
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 984 Bytes
/
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
{
"name": "@newrelic/koa",
"version": "2.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",
"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": "SEE LICENSE IN LICENSE",
"engines": {
"node": ">=6.0.0 <11.0.0"
},
"devDependencies": {
"@koa/router": "^8.0.0",
"@newrelic/test-utilities": "^3.0.0",
"coveralls": "^3.0.0",
"eslint": "^5.8.0",
"koa": "^2.6.1",
"koa-route": "^3.2.0",
"koa-router": "^7.4.0",
"newrelic": "^5.9.0",
"semver": "^5.6.0",
"tap": "^12.0.1"
},
"dependencies": {
"methods": "^1.1.2"
},
"peerDependencies": {
"newrelic": ">=5.9.0"
}
}