-
Notifications
You must be signed in to change notification settings - Fork 29
/
Copy pathpackage.json
74 lines (74 loc) · 2.45 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "@newrelic/apollo-server-plugin",
"version": "7.0.0",
"description": "Apollo Server plugin that adds New Relic Node.js agent instrumentation.",
"main": "./index.js",
"types": "./index.d.ts",
"scripts": {
"integration": "rm -f newrelic_agent.log && time c8 -o ./coverage/integration borp 'tests/integration/**/*.test.js'",
"lint": "eslint *.js lib tests",
"lint:fix": "eslint --fix *.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 integration && npm run versioned && npm run type-check",
"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 borp 'tests/unit/**/*.test.js'",
"type-check": "tsd",
"versioned": "NPM7=1 ./bin/run-versioned-tests.sh",
"versioned:folder": "versioned-tests --minor --all -i 2",
"versioned:major": "VERSIONED_MODE=--major npm run versioned"
},
"files": [
"index.js",
"index.d.ts",
"config.d.ts",
"lib/*.js"
],
"repository": {
"type": "git",
"url": "https://github.com/newrelic/newrelic-node-apollo-server-plugin.git"
},
"author": "New Relic Node.js agent team <[email protected]>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/newrelic/newrelic-node-apollo-server-plugin/issues"
},
"homepage": "https://github.com/newrelic/newrelic-node-apollo-server-plugin#readme",
"engines": {
"node": ">=18"
},
"devDependencies": {
"@apollo/server": "^4.1.1",
"@matteo.collina/tspl": "^0.1.1",
"@newrelic/eslint-config": "^0.3.0",
"@newrelic/newrelic-oss-cli": "^0.1.2",
"@newrelic/test-utilities": "^8.5.0",
"apollo-server": "^3.11.1",
"borp": "^0.19.0",
"c8": "^7.14.0",
"eslint": "^8.24.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-header": "^3.1.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.4.0",
"graphql": "^16.6.0",
"husky": "^6.0.0",
"lint-staged": "^11.0.0",
"lockfile-lint": "^4.9.6",
"newrelic": "^12.11.0",
"prettier": "^2.3.2",
"sinon": "^11.1.2",
"tsd": "^0.18.0"
},
"peerDependencies": {
"newrelic": ">=12.11.0"
},
"tsd": {
"directory": "./tests/types",
"compilerOptions": {
"lib": [
"es2019"
]
}
}
}