/
githubmirror
/
wtfjs
Обзор
Документация
Войти
/
githubmirror
/
wtfjs
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
v1.9.0
package.json
55 строк
1 KB
Denys Dovhan
1.9.0
06 май 2020, 13:41
Не верифицирован
06 май 2020, 13:41
80d54be
Код
Авторство
О чём код?
{ "name": "wtfjs", "version": "1.9.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 <denysdovhan@gmail.com> (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" ] } }