1{ 2 "author": { 3 "name": "Titus Wormer", 4 "email": "tituswormer@gmail.com", 5 "url": "https://wooorm.com" 6 }, 7 "bugs": { 8 "url": "https://github.com/wooorm/is-word-character/issues" 9 }, 10 "bundleDependencies": false, 11 "contributors": [ 12 { 13 "name": "Titus Wormer", 14 "email": "tituswormer@gmail.com", 15 "url": "https://wooorm.com" 16 } 17 ], 18 "dependencies": {}, 19 "deprecated": false, 20 "description": "Check if a character is a word character", 21 "devDependencies": { 22 "browserify": "^16.0.0", 23 "nyc": "^15.0.0", 24 "prettier": "^1.0.0", 25 "remark-cli": "^7.0.0", 26 "remark-preset-wooorm": "^6.0.0", 27 "tape": "^4.0.0", 28 "tinyify": "^2.0.0", 29 "xo": "^0.25.0" 30 }, 31 "files": [ 32 "index.js" 33 ], 34 "funding": { 35 "type": "github", 36 "url": "https://github.com/sponsors/wooorm" 37 }, 38 "homepage": "https://github.com/wooorm/is-word-character#readme", 39 "keywords": [ 40 "string", 41 "character", 42 "char", 43 "code", 44 "word" 45 ], 46 "license": "MIT", 47 "name": "is-word-character", 48 "nyc": { 49 "check-coverage": true, 50 "lines": 100, 51 "functions": 100, 52 "branches": 100 53 }, 54 "prettier": { 55 "tabWidth": 2, 56 "useTabs": false, 57 "singleQuote": true, 58 "bracketSpacing": false, 59 "semi": false, 60 "trailingComma": "none" 61 }, 62 "remarkConfig": { 63 "plugins": [ 64 "preset-wooorm" 65 ] 66 }, 67 "repository": { 68 "type": "git", 69 "url": "git+https://github.com/wooorm/is-word-character.git" 70 }, 71 "scripts": { 72 "build": "npm run build-bundle && npm run build-mangle", 73 "build-bundle": "browserify . -s isWordCharacter -o is-word-character.js", 74 "build-mangle": "browserify . -s isWordCharacter -p tinyify -o is-word-character.min.js", 75 "format": "remark . -qfo && prettier --write \"**/*.js\" && xo --fix", 76 "test": "npm run format && npm run build && npm run test-coverage", 77 "test-api": "node test", 78 "test-coverage": "nyc --reporter lcov tape test.js" 79 }, 80 "version": "1.0.4", 81 "xo": { 82 "prettier": true, 83 "esnext": false, 84 "ignores": [ 85 "is-word-character.js" 86 ] 87 } 88}