-
-
Notifications
You must be signed in to change notification settings - Fork 2.6k
/
package.json
85 lines (85 loc) · 1.94 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "wtfjs",
"version": "1.22.8",
"description": "A list of funny and tricky JavaScript examples",
"bin": {
"wtfjs": "wtfjs.js"
},
"scripts": {
"toc": "npx doctoc --github --title '# Table of Contents' --maxlevel 2 README*.md",
"format": "prettier --write .",
"test": "prettier --check .",
"release": "npx semantic-release",
"prepare": "husky install"
},
"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": {
"@semantic-release/git": "^10.0.1",
"doctoc": "^2.1.0",
"husky": "^8.0.1",
"lint-staged": "^13.0.0",
"prettier": "^2.6.2",
"semantic-release": "^19.0.2"
},
"dependencies": {
"boxen": "^7.0.0",
"chalk": "^5.0.1",
"default-pager": "^1.1.0",
"meow": "^10.1.4",
"msee": "^0.3.3",
"through2": "^4.0.2",
"update-notifier": "^6.0.2"
},
"lint-staged": {
"README*.md": [
"npm run toc",
"prettier --write --ignore-unknown"
],
"**/*": "prettier --write --ignore-unknown"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"prettier": {
"embeddedLanguageFormatting": "off"
},
"release": {
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/npm",
"@semantic-release/github",
[
"@semantic-release/git",
{
"assets": [
"README*.md",
"*.js",
"package.json",
"package-lock.json"
]
}
]
]
}
}