CoolFace
Apppublic

AK-21/Graphite-Industrial-Intelligence

sourceHugging Faceupdated 3mo agoView on Hugging Face
0likes
package.json74 linesDownload Raw Back to is-hexadecimal
1{2  "name": "is-hexadecimal",3  "version": "2.0.1",4  "description": "Check if a character is hexadecimal",5  "license": "MIT",6  "keywords": [7    "string",8    "character",9    "char",10    "code",11    "hexadecimal"12  ],13  "repository": "wooorm/is-hexadecimal",14  "bugs": "https://github.com/wooorm/is-hexadecimal/issues",15  "funding": {16    "type": "github",17    "url": "https://github.com/sponsors/wooorm"18  },19  "author": "Titus Wormer <tituswormer@gmail.com> (https://wooorm.com)",20  "contributors": [21    "Titus Wormer <tituswormer@gmail.com> (https://wooorm.com)"22  ],23  "sideEffects": false,24  "type": "module",25  "main": "index.js",26  "types": "index.d.ts",27  "files": [28    "index.d.ts",29    "index.js"30  ],31  "devDependencies": {32    "@types/tape": "^4.0.0",33    "c8": "^7.0.0",34    "prettier": "^2.0.0",35    "remark-cli": "^10.0.0",36    "remark-preset-wooorm": "^9.0.0",37    "rimraf": "^3.0.0",38    "tape": "^5.0.0",39    "type-coverage": "^2.0.0",40    "typescript": "^4.0.0",41    "xo": "^0.46.0"42  },43  "scripts": {44    "prepublishOnly": "npm run build && npm run format",45    "build": "rimraf \"*.d.ts\" && tsc && type-coverage",46    "format": "remark . -qfo && prettier . -w --loglevel warn && xo --fix",47    "test-api": "node --conditions development test.js",48    "test-coverage": "c8 --check-coverage --branches 100 --functions 100 --lines 100 --statements 100 --reporter lcov npm run test-api",49    "test": "npm run build && npm run format && npm run test-coverage"50  },51  "prettier": {52    "tabWidth": 2,53    "useTabs": false,54    "singleQuote": true,55    "bracketSpacing": false,56    "semi": false,57    "trailingComma": "none"58  },59  "xo": {60    "prettier": true61  },62  "remarkConfig": {63    "plugins": [64      "preset-wooorm"65    ]66  },67  "typeCoverage": {68    "atLeast": 100,69    "detail": true,70    "strict": true,71    "ignoreCatch": true72  }73}74