forked from denysdovhan/wtfjs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.28 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
49
50
51
52
53
54
55
{
"name": "wtfjs",
"version": "1.10.0",
"description": "A list of funny and tricky JavaScript examples",
"bin": "wtfjs.js",
"scripts": {
"precommit": "lint-staged",
"postpublish": "git push --follow-tags",
"toc": "doctoc --github --title '# Table of Contents' --maxlevel 2 README.md",
"format": "prettier --write '*.{json,md}' 'wtfjs'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/denysdovhan/wtfjs.git"
},
"keywords": [
"javascript",
"specification",
"notes",
"wtf",
"learning",
"guide",
"handbook"
],
"author": "Denys Dovhan <[email protected]> (http://denysdovhan.com)",
"license": "WTFPL 2.0",
"bugs": {
"url": "https://github.com/denysdovhan/wtfjs/issues"
},
"homepage": "https://github.com/denysdovhan/wtfjs#readme",
"devDependencies": {
"doctoc": "^1.3.0",
"husky": "^0.14.3",
"lint-staged": "^7.2.2",
"prettier": "^1.14.2"
},
"dependencies": {
"boxen": "^1.1.0",
"chalk": "^1.1.1",
"default-pager": "^1.1.0",
"meow": "^3.7.0",
"msee": "^0.3.3",
"through2": "^2.0.2",
"update-notifier": "^2.0.0"
},
"lint-staged": {
"*.{md}": [
"npm run toc",
"prettier --write"
],
"*.{js,json}": [
"prettier --write"
]
}
}