-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.12 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
{
"name": "@topcli/stdin",
"version": "1.0.0",
"description": "Node.js light standard input (stdin) crafted for REPL experience",
"type": "module",
"exports": "./index.js",
"scripts": {
"prepublishOnly": "pkg-ok",
"test": "node --test test/",
"coverage": "c8 -r html npm test",
"lint": "eslint ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/TopCli/stdin.git"
},
"keywords": [
"nodejs",
"node",
"stdin",
"input",
"repl",
"REPL",
"interactive",
"cli",
"command-line",
"interfaces",
"prompt"
],
"author": "GENTILHOMME Thomas <gentilhomme.thomas@gmail.com>",
"license": "MIT",
"files": [
"index.js",
"index.d.ts",
"src"
],
"bugs": {
"url": "https://github.com/TopCli/stdin/issues"
},
"homepage": "https://github.com/TopCli/stdin#readme",
"dependencies": {
"fast-levenshtein": "^3.0.0",
"string-length": "^6.0.0"
},
"devDependencies": {
"@nodesecure/eslint-config": "^1.7.0",
"c8": "^8.0.0",
"eslint": "^8.39.0",
"pkg-ok": "^3.0.0"
},
"engines": {
"node": ">=14"
}
}