forked from mserranom/bbrun
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 831 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
{
"name": "bbrun",
"version": "0.10.1",
"description": "Run your Bitbucket Pipelines locally",
"main": "index.js",
"preferGlobal": true,
"bin": "./index.js",
"scripts": {
"prettier": "prettier --write *.js src/*.js test/*.js",
"test": "jest test/*.js",
"test-examples": "jest examples/*.js",
"test-all": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mserranom/bbrun.git"
},
"author": "[email protected]",
"license": "MIT",
"bugs": {
"url": "https://github.com/mserranom/bbrun/issues"
},
"homepage": "https://github.com/mserranom/bbrun#readme",
"dependencies": {
"check-types": "11.0.x",
"js-yaml": "3.13.x",
"meow": "4.0.x",
"shelljs": "0.8.x"
},
"devDependencies": {
"jest": "^24.9.0",
"prettier": "^1.19.1"
}
}