-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 989 Bytes
/
Copy pathpackage.json
File metadata and controls
42 lines (42 loc) · 989 Bytes
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
{
"name": "nuke-newrelic",
"version": "1.0.0",
"description": "A Node.js application to safely delete all alert policies, workflows, channels, and alert destinations from a New Relic account",
"main": "index.js",
"type": "module",
"scripts": {
"start": "node index.js",
"dev": "node --watch index.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"newrelic",
"nuke",
"cleanup",
"automation",
"alerts",
"policies",
"destinations",
"workflows",
"channels",
"api",
"graphql"
],
"author": "",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/yourusername/nuke-newrelic.git"
},
"bugs": {
"url": "https://github.com/yourusername/nuke-newrelic/issues"
},
"homepage": "https://github.com/yourusername/nuke-newrelic#readme",
"engines": {
"node": ">=18.0.0"
},
"dependencies": {
"axios": "^1.6.0",
"dotenv": "^16.3.1"
}
}