-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 896 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": "docker-verb",
"version": "0.3.2",
"description": "Run verb on Docker.",
"repository": "git@github.com:stefanwalther/docker-verb.git",
"author": "Stefan Walther",
"license": "MIT",
"scripts": {
"docs": "docker run --rm -v ${PWD}:/opt/verb stefanwalther/verb",
"docs:watch": "nodemon --config ./nodemon.json --exec npm run docs",
"build": "docker build --no-cache -t stefanwalther/verb .",
"run": "docker run -it stefanwalther/verb",
"exec": "docker run -it stefanwalther/verb /bin/bash",
"test": "docker run -v ${PWD}/test/fixtures:/workspace -t -it stefanwalther/verb /bin/bash"
},
"verb": {
"run": true,
"toc": true,
"layout": "empty",
"tasks": [
"readme"
],
"plugins": [
"gulp-format-md"
],
"related": {
"list": []
},
"lint": {
"reflinks": true
},
"reflinks": []
}
}