UNPKG

hyper-subliminal-theme

Version:
80 lines (79 loc) 1.71 kB
{ "name": "hyper-subliminal-theme", "version": "1.0.1", "description": "Subliminal inspired theme for Hyper", "main": "index.js", "scripts": { "lint": "eslint .", "test": "yarn run lint", "precommit": "yarn run test", "release": "yarn run test && standard-version" }, "repository": { "type": "git", "url": "git+https://github.com/romainwn/hyper-subliminal-theme" }, "author": "Romain Le Quellec", "license": "MIT", "bugs": { "url": "https://github.com/romainwn/hyper-subliminal-theme/issues" }, "keywords": [ "hyper", "hyper-theme", "theme", "ui", "subliminal" ], "eslintConfig": { "plugins": [ "prettier" ], "extends": [ "eslint:recommended", "prettier" ], "parserOptions": { "ecmaVersion": 8, "sourceType": "module", "ecmaFeatures": { "impliedStrict": true, "experimentalObjectRestSpread": true }, "allowImportExportEverywhere": true }, "env": { "es6": true, "node": true, "browser": true }, "rules": { "func-names": [ "error", "as-needed" ], "no-shadow": "error", "no-extra-semi": 0, "no-console": 0, "prettier/prettier": [ "error", { "printWidth": 120, "tabWidth": 2, "trailingComma": "none", "bracketSpacing": false, "semi": true, "useTabs": false, "parser": "babylon", "jsxBracketSameLine": false } ] } }, "devDependencies": { "eslint": "4.19.1", "husky": "0.14.3", "prettier": "1.13.4", "standard-version": "4.4.0" } }