-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
55 lines (55 loc) · 1.25 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
55
{
"name": "nodeprompt",
"version": "2.0.2",
"description": "A smart Git prompt for your terminal",
"main": "lib/nodeprompt.js",
"devDependencies": {
"chai": "^4.1.2",
"eslint": "^6.8.0",
"mocha": "^4.0.1",
"nyc": "^13.1.0",
"proxyquire": "^2.1.0",
"sinon": "^4.0.1"
},
"bin": {
"nodeprompt-enable-bash": "bin/nodeprompt-enable-bash",
"nodeprompt-enable-zsh": "bin/nodeprompt-enable-zsh",
"nodeprompt": "bin/nodeprompt"
},
"files": [
"bin",
"lib",
"config.default.js"
],
"scripts": {
"test": "mocha",
"coverage": "nyc --reporter=html --reporter=text mocha",
"lint": "./node_modules/.bin/eslint lib/**/*.js test/**/*.js bin/nodeprompt"
},
"repository": {
"type": "git",
"url": "http://github.com/oleq/nodeprompt.git"
},
"keywords": [
"git",
"command",
"prompt",
"bash",
"node.js"
],
"author": {
"name": "Aleksander Nowodzinski",
"email": "[email protected]",
"url": "http://nowodzinski.pl"
},
"license": "MIT/X11",
"engine": {
"node": ">=0.10"
},
"readmeFilename": "README.md",
"bugs": {
"url": "http://github.com/oleq/nodeprompt/issues"
},
"homepage": "http://github.com/oleq/nodeprompt",
"dependencies": {}
}