-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
42 lines (42 loc) · 1001 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
{
"name": "vorpal-shell",
"version": "0.2.0",
"description": "Vorpal Extension for running shell commands",
"main": "src/index.js",
"files": [
"src",
"LICENSE",
"README.md"
],
"scripts": {
"start": "node examples/vorpal-shell",
"lint": "eslint src examples",
"test:unit": "echo \"No automated test so far, play around with 'npm start'\" && exit 0",
"test": "npm run lint && npm run test:unit"
},
"repository": {
"type": "git",
"url": "git+https://github.com/AdrieanKhisbe/vorpal-shell.git"
},
"keywords": [
"vorpal",
"shell",
"bash",
"zsh",
"completion"
],
"author": "Adrien Becchis",
"license": "MIT",
"bugs": {
"url": "https://github.com/AdrieanKhisbe/vorpal-shell/issues"
},
"homepage": "https://github.com/AdrieanKhisbe/vorpal-shell#readme",
"dependencies": {
"shelljs": "^0.8.3"
},
"devDependencies": {
"@-k/eslint-plugin": "^0.3.1",
"eslint": "^6.8.0",
"vorpal": "^1.12.0"
}
}