UNPKG

@shelf/is-string-in-quotes

Version:

Check if string is inside quotation marks (22 styles)

74 lines (73 loc) 1.83 kB
{ "name": "@shelf/is-string-in-quotes", "version": "1.0.0", "description": "Check if string is inside quotation marks (22 styles)", "keywords": [ "string", "quotes", "is-string-in-quotes" ], "repository": "shelfio/is-string-in-quotes", "license": "MIT", "author": { "name": "Vlad Holubiev", "email": "vlad@shelf.io", "url": "shelf.io" }, "files": [ "lib" ], "main": "lib", "types": "lib/index.d.ts", "scripts": { "build": "rm -rf lib/ && yarn build:types && babel src --out-dir lib --ignore '**/*.test.ts' --extensions '.ts'", "build:types": "tsc --emitDeclarationOnly --declaration --isolatedModules false --declarationDir lib", "coverage": "jest --coverage", "lint": "eslint . --ext .js,.ts,.json --fix", "lint:ci": "eslint . --ext .js,.ts,.json --quiet", "prepack": "yarn build", "test": "jest src", "type-check": "tsc --noEmit", "type-check:watch": "npm run type-check -- --watch" }, "husky": { "hooks": { "pre-commit": "lint-staged", "post-commit": "git update-index --again" } }, "lint-staged": { "*.{html,json,md,yml}": [ "prettier --write --ignore-path=./.eslintignore", "git add" ], "*.{ts,js}": [ "eslint --fix", "git add" ] }, "jest": { "testEnvironment": "node" }, "devDependencies": { "@babel/cli": "7.8.3", "@babel/core": "7.8.3", "@babel/preset-env": "7.8.3", "@babel/preset-typescript": "7.8.3", "@shelf/eslint-config": "0.13.0", "@types/jest": "24.9.0", "@types/node": "12", "eslint": "6.8.0", "husky": "4.0.9", "jest": "24.9.0", "lint-staged": "9.5.0", "prettier": "1.19.1", "typescript": "3.7.4" }, "engines": { "node": ">=12" }, "publishConfig": { "access": "public" } }