/
githubmirror
/
wtfjs
Обзор
Документация
Войти
/
githubmirror
/
wtfjs
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
v1.13.1
package.json
56 строк
1 KB
Denys Dovhan
feat: Add format workflow
03 фев 2021, 19:10
Не верифицирован
03 фев 2021, 19:10
c36b046
Код
Авторство
О чём код?
{ "name": "wtfjs", "version": "1.11.0", "description": "A list of funny and tricky JavaScript examples", "bin": { "wtfjs": "wtfjs.js" }, "scripts": { "precommit": "lint-staged", "toc": "doctoc --github --title '# Table of Contents' --maxlevel 2 README*.md", "format": "prettier --write '*.{json,js}'" }, "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", "semantic-release": "^17.3.7" }, "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" ], "*.{js,json}": [ "prettier --write" ] } }