-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
45 lines (45 loc) · 1 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
{
"name": "@newrelic/introspector-node",
"version": "1.0.0",
"description": "newrelic-introspector-node",
"main": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/newrelic/newrelic-introspector-node.git"
},
"scripts": {
"lint": "eslint src/*.js test/**/*.js",
"lint:fix": "eslint --fix src/*.js test/**/*.js",
"unit": "c8 tap test/unit/*.test.js --no-coverage",
"prepare": "husky install",
"test": "npm run unit"
},
"engines": {
"node": ">=18",
"npm": ">=6.0.0"
},
"author": "",
"license": "ISC",
"dependencies": {
"yargs": "^17.7.2"
},
"devDependencies": {
"@newrelic/eslint-config": "^0.3.0",
"c8": "^7.12.0",
"eslint": "^8.44.0",
"husky": "^8.0.3",
"lint-staged": "^13.2.3",
"lockfile-lint": "^4.9.6",
"sinon": "^10.0.0",
"tap": "^16.3.7"
},
"files": [
"LICENSE",
"README.md",
"THIRD_PARTY_NOTICES.md",
"src/"
],
"bin": {
"newrelic-introspector-node": "./src/cli.js"
}
}