-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
65 lines (65 loc) · 2.03 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
{
"name": "@newrelic/test-utilities",
"version": "9.1.0",
"description": "Test library for New Relic instrumentation modules.",
"main": "index.js",
"scripts": {
"docs": "git rm -r docs && jsdoc -c ./jsdoc-conf.json -d docs -r *.js lib/ && git add docs",
"publish-docs": "./bin/publish-docs.sh",
"lint": "eslint *.js lib/*",
"lint:fix": "eslint --fix *.js lib/*",
"lint:lockfile": "lockfile-lint --path package-lock.json --type npm --allowed-hosts npm --validate-https --validate-integrity",
"test": "npm run unit",
"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\\/.*\\.tap\\.js)$' --no-coverage --reporter classic",
"prepare": "husky install"
},
"bin": {
"versioned-tests": "./bin/version-manager.js"
},
"repository": {
"type": "git",
"url": "[email protected]:newrelic/node-test-utilities"
},
"author": "New Relic Node.js agent team <[email protected]>",
"license": "Apache-2.0",
"engines": {
"node": ">=18.0"
},
"files": [
"lib/**",
"bin/version-manager.js",
"index.js"
],
"devDependencies": {
"@newrelic/eslint-config": "^0.3.0",
"@newrelic/newrelic-oss-cli": "^0.1.2",
"c8": "^7.12.0",
"eslint": "^8.43.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",
"husky": "^6.0.0",
"jsdoc": "^4.0.2",
"koa": "^2.14.2",
"lint-staged": "^11.0.0",
"lockfile-lint": "^4.9.6",
"newrelic": "^11.22.0",
"prettier": "^2.3.2",
"sinon": "^11.1.1",
"tap": "^16.3.8"
},
"dependencies": {
"@smithy/eventstream-codec": "^2.1.1",
"@smithy/util-utf8": "^2.1.1",
"async": "^3.2.3",
"colors": "^1.1.2",
"commander": "^2.14.1",
"concat-stream": "^1.6.0",
"glob": "^7.2.3",
"lodash": "^4.17.5",
"log-update": "^1.0.2",
"semver": "^7.5.2"
}
}