-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
44 lines (44 loc) · 982 Bytes
/
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
{
"name": "pretty-repl",
"keywords": [
"repl",
"syntax highlighting",
"colors",
"cli"
],
"version": "4.0.1",
"description": "Extends repl.REPLServer to allow for a colorize function",
"main": "index.js",
"engines": {
"node": ">=14"
},
"scripts": {
"lint": "eslint .",
"depcheck": "depcheck",
"check": "npm run depcheck && npm run lint",
"test": "mocha test/*.spec.js",
"release": "release-it"
},
"files": [
"lib",
"index.js",
"index.d.ts"
],
"author": "Massimiliano Marcon <[email protected]>",
"license": "MIT",
"repository": "https://github.com/mongodb-js/pretty-repl",
"dependencies": {
"ansi-regex": "^5.0.1",
"chalk": "^4.1.1",
"emphasize": "^4.2.0",
"strip-ansi": "^6.0.0"
},
"devDependencies": {
"depcheck": "^1.4.3",
"eslint": "^8.42.0",
"eslint-config-mongodb-js": "^5.0.3",
"mocha": "^10.2.0",
"release-it": "^15.11.0",
"stdio-mock": "^1.1.0"
}
}