-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.21 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.21 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
{
"name": "prompt-sync-plus",
"version": "1.0.2",
"description": "Yet another synchronous prompt for Node.js",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "node build/scripts/build.js",
"test": "node build/scripts/test.js",
"format": "prettier --write src/*.ts",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "https://github.com/Vpet95/prompt-sync-plus.git"
},
"keywords": [
"prompt",
"sync",
"blocking",
"readline",
"input",
"getline",
"repl",
"history",
"plus",
"fixes",
"enhancements"
],
"contributors": [
{
"name": "Vuk Petrovic",
"email": "vuk.petrovic@quotapath.com"
}
],
"license": "MIT",
"dependencies": {
"joi": "^17.6.0",
"strip-ansi": "^5.0.0",
"table": "^6.8.0"
},
"devDependencies": {
"@types/node": "^18.7.13",
"badge-maker": "^3.3.1",
"c8": "^7.12.0",
"chai": "^4.3.6",
"husky": "^8.0.0",
"mocha": "^10.0.0",
"prettier": "^2.6.2",
"prompt-sync-history": "^1.0.1",
"rollup": "^2.79.1",
"rollup-plugin-dts": "^4.2.2",
"sinon": "^14.0.0"
},
"type": "module"
}