forked from newrelic/newrelic-node-nextjs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.84 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
49
50
51
52
53
54
55
56
57
{
"name": "@newrelic/next",
"version": "0.9.0",
"description": "Next.js instrumentation for the New Relic Node.js agent. ",
"main": "index.js",
"scripts": {
"lint": "eslint *.js lib tests",
"lint:lockfile": "lockfile-lint --path package-lock.json --type npm --allowed-hosts npm --validate-https --validate-integrity",
"prepare": "husky install",
"test": "npm run unit && npm run versioned",
"third-party-updates": "oss third-party manifest && oss third-party notices && git add THIRD_PARTY_NOTICES.md third_party_manifest.json",
"unit": "c8 -o ./coverage/unit tap --test-regex='(\\/|^tests\\/unit\\/.*\\.test\\.js)$' --no-coverage",
"versioned": "c8 -o ./coverage/versioned versioned-tests --minor --all -i 2 'tests/versioned/*.tap.js'",
"versioned:major": "versioned-tests --major --all -i 2 'tests/versioned/*.tap.js'"
},
"files": [
"README.md",
"LICENSE",
"CHANGELOG.md",
"THIRD_PARTY_NOTICES.md",
"index.js",
"nr-hooks.js",
"load-externals.js",
"lib/"
],
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/newrelic/newrelic-node-nextjs.git"
},
"author": "New Relic Node.js agent team <[email protected]>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/newrelic/newrelic-node-nextjs/issues"
},
"homepage": "https://github.com/newrelic/newrelic-node-nextjs#readme",
"engines": {
"node": ">=16.0.0"
},
"devDependencies": {
"@newrelic/eslint-config": "^0.2.0",
"@newrelic/newrelic-oss-cli": "^0.1.2",
"@newrelic/test-utilities": "^8.1.0",
"c8": "^7.12.0",
"husky": "^8.0.1",
"lint-staged": "^12.4.2",
"lockfile-lint": "^4.9.6",
"newrelic": "^11.12.0",
"sinon": "^14.0.0",
"tap": "^16.2.0"
},
"peerDependencies": {
"newrelic": ">=11.12.0"
},
"dependencies": {
"semver": "^7.3.7"
}
}