-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.06 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
{
"name": "ink-scroll-prompts",
"version": "0.1.0",
"description": "Prompts that scroll. Using ink.",
"main": "index.js",
"files": [
"src"
],
"scripts": {
"test": "mocha test",
"coverage": "nyc npm run test",
"readme": "node scripts/generate-readme.js"
},
"keywords": [],
"author": {
"name": "Brittany Reid",
"url": "https://github.com/brittany-reid"
},
"repository": {
"type": "git",
"url": "https://github.com/Brittany-Reid/ink-scroll-prompts.git"
},
"license": "Unlicense",
"dependencies": {
"data-store": "^4.0.3",
"lodash": "^4.17.21",
"slice-ansi": "^3.0.0",
"strip-ansi": "^5.2.0",
"wrap-ansi": "^6.2.0"
},
"peerDependencies": {
"@gnd/ink": "^3.1.2",
"react": "^16.9.0"
},
"devDependencies": {
"@gnd/ink": "^3.1.2",
"chalk": "^4.1.1",
"delay": "^5.0.0",
"eslint": "^7.28.0",
"mocha": "^8.4.0",
"nyc": "^15.1.0",
"react": "^16.9.0"
},
"nyc": {
"exclude": [
"src/patch",
"test",
"src/utils.js",
"src/hooks"
]
}
}