-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.45 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.45 KB
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
{
"name": "@heroku-cli/notifications",
"description": "display notifications in Heroku CLI commands",
"version": "1.2.6",
"author": "Heroku",
"bugs": "https://github.com/heroku/heroku-cli-notifications/issues",
"dependencies": {
"@types/node-notifier": "8.0.5",
"node-notifier": "^10.0.1",
"ts-node": "^10.9.2"
},
"devDependencies": {
"@types/chai": "^5.0.1",
"@types/mocha": "^10.0.10",
"@types/node": "24.10.1",
"chai": "^6.2.0",
"eslint": "^9",
"eslint-config-oclif": "^6.0.144",
"eslint-plugin-mocha": "^11.2.0",
"mocha": "^11.7.2",
"nyc": "^17.1.0",
"tslib": "1.14.1",
"typescript": "5.9.3"
},
"engines": {
"node": ">=20"
},
"files": [
"/assets",
"/lib"
],
"homepage": "https://github.com/heroku/heroku-cli-notifications",
"keywords": [
"oclif"
],
"license": "MIT",
"main": "lib/index.js",
"mocha": {
"require": [
"test/helpers/init.js",
"ts-node/register",
"source-map-support/register"
],
"watch-extensions": "ts",
"recursive": true,
"reporter": "spec",
"timeout": 360000
},
"repository": "heroku/heroku-cli-notifications",
"scripts": {
"build": "rm -rf lib && tsc",
"lint": "eslint .",
"posttest": "yarn run lint",
"prepublishOnly": "yarn run build",
"test": "nyc mocha --forbid-only \"test/**/*.test.ts\""
},
"types": "lib/index.d.ts",
"resolutions": {
"serialize-javascript": "^7.0.3"
}
}