-
Notifications
You must be signed in to change notification settings - Fork 70
/
package.json
44 lines (44 loc) · 1.08 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
{
"preferGlobal": true,
"name": "learnyoubash",
"version": "2.1.0",
"description": "Learn you how to write your first bash script",
"bin": {
"learnyoubash": "./bin/learnyoubash"
},
"scripts": {
"test": "eslint . && workshopper-adventure-test",
"postpublish": "git push --follow-tags"
},
"repository": {
"type": "git",
"url": "git+https://github.com/denysdovhan/learnyoubash.git"
},
"keywords": [
"nodeschool",
"workshopper",
"tutorial",
"bash"
],
"author": "Denys Dovhan <[email protected]> (http://denysdovhan.com)",
"license": "MIT",
"bugs": {
"url": "https://github.com/denysdovhan/learnyoubash/issues"
},
"homepage": "https://github.com/denysdovhan/learnyoubash#readme",
"engines": {
"node": ">=6.0",
"npm": ">=3.0"
},
"dependencies": {
"colors": "^1.1.2",
"diff": "^3.2.0",
"workshopper-adventure": "^6.0.1"
},
"devDependencies": {
"eslint": "^3.16.1",
"eslint-config-airbnb-base": "^11.1.0",
"eslint-plugin-import": "^2.2.0",
"workshopper-adventure-test": "^1.1.1"
}
}