-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
33 lines (33 loc) · 1.02 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
{
"author": "Cat Pea <[email protected]> (https://catpea.com/)",
"type": "module",
"name": "bashscript",
"version": "2.0.26",
"description": "A small and minimalist REPL shell, and a very lightweight JavaScript library meant to convert Operating System commands to functions.",
"main": "index.js",
"bin": {
"bashscript": "./bashscript.js"
},
"scripts": {
"bork": "git add .; git commit -m 'New Release'; git push; npm publish; git push;",
"save": "git add .; git commit -m 'New Release'; git push; npm version patch; npm publish; git push;",
"test": "./test.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/catpea/bashscript.git"
},
"keywords": [],
"license": "ISC",
"bugs": {
"url": "https://github.com/catpea/bashscript/issues"
},
"homepage": "https://github.com/catpea/bashscript#readme",
"dependencies": {
"debug": "^4.3.1",
"duplex-child-process": "^1.0.1",
"execa": "^5.0.0",
"invariant": "^2.2.4",
"pretty-error": "^3.0.3"
}
}