forked from denysdovhan/learnyouhtml
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.18 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
46
47
48
{
"preferGlobal": true,
"name": "learnyouhtml",
"version": "1.0.0",
"description": "Learn you how to create your first web-page",
"bin": {
"learnyouhtml": "./bin/learnyouhtml"
},
"scripts": {
"test": "eslint . && workshopper-adventure-test",
"postpublish": "git push --follow-tags"
},
"repository": {
"type": "git",
"url": "git+https://github.com/denysdovhan/learnyouhtml.git"
},
"keywords": [
"nodeschool",
"workshopper",
"tutorial",
"markup",
"html"
],
"author": "Denys Dovhan <[email protected]> (http://denysdovhan.com)",
"license": "MIT",
"bugs": {
"url": "https://github.com/denysdovhan/learnyouhtml/issues"
},
"homepage": "https://github.com/denysdovhan/learnyouhtml#readme",
"engines": {
"node": ">=6.0.0"
},
"dependencies": {
"chokidar": "^1.6.1",
"colors": "^1.1.2",
"diff": "^3.2.0",
"express": "^4.15.2",
"fast-html-parser": "^1.0.1",
"openurl": "^1.1.1",
"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.0"
}
}