This repository was archived by the owner on Jul 20, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
66 lines (66 loc) · 2.13 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
{
"name": "@newrelic/mysql",
"version": "6.1.0",
"description": "MySQL instrumentation for the New Relic Node agent.",
"main": "index.js",
"scripts": {
"test": "npm run versioned",
"third-party-updates": "oss third-party manifest && oss third-party notices && git add THIRD_PARTY_NOTICES.md third_party_manifest.json",
"versioned": "npm run versioned:npm7",
"versioned:major": "c8 -o ./coverage/versioned versioned-tests --major --all -i 2 'tests/versioned/**/*.tap.js'",
"versioned:npm6": "c8 -o ./coverage/versioned versioned-tests --minor -i 2 'tests/versioned/**/*.tap.js'",
"versioned:npm7": "c8 -o ./coverage/versioned versioned-tests --minor --all -i 2 'tests/versioned/**/*.tap.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"
},
"repository": {
"type": "git",
"url": "git+https://github.com/newrelic/node-newrelic-mysql.git"
},
"keywords": [
"newrelic",
"instrumentation",
"mysql",
"apm"
],
"author": "New Relic Node.js agent team <[email protected]>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/newrelic/node-newrelic-mysql/issues"
},
"homepage": "https://github.com/newrelic/node-newrelic-mysql#readme",
"engines": {
"node": ">=14"
},
"devDependencies": {
"@newrelic/eslint-config": "^0.0.4",
"@newrelic/newrelic-oss-cli": "^0.1.2",
"@newrelic/test-utilities": "^6.3.0",
"c8": "^7.12.0",
"eslint": "^7.32.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",
"generic-pool": "^2.5.4",
"husky": "^7.0.2",
"lint-staged": "^11.1.2",
"lockfile-lint": "^4.9.6",
"mysql": "^2.17.1",
"mysql2": "^1.7.0",
"newrelic": "^9.7.1",
"prettier": "^2.3.2",
"tap": "^16.0.1"
},
"peerDependencies": {
"newrelic": ">=6.11.0"
},
"files": [
"index.js",
"nr-hooks.js",
"lib/*",
"*.md"
]
}