-
Notifications
You must be signed in to change notification settings - Fork 37
/
package.json
45 lines (45 loc) · 1.04 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
{
"name": "bats-mock",
"description": "Mocking/stubbing library for BATS (Bash Automated Testing System)",
"version": "1.2.5",
"author": "Sam Stephenson <[email protected]> (http://sstephenson.us/)",
"bugs": {
"url": "https://github.com/jasonkarns/bats-mock/issues"
},
"contributors": [
"Mislav Marohnić <[email protected]> (http://mislav.net)",
"Jason Karns <[email protected]> (http://jason.karns.name/)"
],
"devDependencies": {
"fixpack": "^4.0.0"
},
"files": [
"binstub",
"stub.bash"
],
"homepage": "https://github.com/jasonkarns/bats-mock#readme",
"keywords": [
"bash",
"bats",
"mock",
"shell",
"stub",
"test",
"unit"
],
"license": "MIT",
"main": "stub.bash",
"peerDependencies": {
"bats": "^0.4.2 || ^1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jasonkarns/bats-mock.git"
},
"scripts": {
"lint": "fixpack",
"posttest": "npm run lint",
"postversion": "git push --follow-tags",
"test": "echo todo"
}
}