-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
48 lines (48 loc) · 878 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
45
46
47
48
{
"name": "promptconfig",
"version": "1.0.0",
"description": "Craft a custom terminal prompt with JSON.",
"author": {
"name": "Brandon Weiss",
"email": "desk@brandonweiss.me"
},
"bin": "cli.js",
"directories": {
"lib": "lib",
"test": "test"
},
"engines": {
"node": ">= 12"
},
"keywords": [
"bash",
"git",
"prompt",
"shell",
"terminal"
],
"license": "MIT",
"repository": "github:brandonweiss/promptconfig",
"scripts": {
"test": "ava",
"test:watch": "ava --watch"
},
"devDependencies": {
"@ava/babel": "^1.0.1",
"ava": "3.8.1",
"np": "^6.2.3"
},
"dependencies": {
"dedent": "^0.7.0",
"esm": "^3.2.25",
"glob": "^7.1.6",
"indent-string": "^4.0.0",
"meow": "^6.1.1",
"update-notifier": "^4.1.0"
},
"esm": {
"cjs": {
"dedefault": true
}
}
}