summaryrefslogtreecommitdiff
path: root/node_modules/is-alphanumerical/package.json
diff options
context:
space:
mode:
authorShipwreckt <me@shipwreckt.co.uk>2025-10-31 20:02:14 +0000
committerShipwreckt <me@shipwreckt.co.uk>2025-10-31 20:02:14 +0000
commit7a52ddeba2a68388b544f529d2d92104420f77b0 (patch)
tree15ddd47457a2cb4a96060747437d36474e4f6b4e /node_modules/is-alphanumerical/package.json
parent53d6ae2b5568437afa5e4995580a3fb679b7b91b (diff)
Changed from static to 11ty!
Diffstat (limited to 'node_modules/is-alphanumerical/package.json')
-rw-r--r--node_modules/is-alphanumerical/package.json79
1 files changed, 79 insertions, 0 deletions
diff --git a/node_modules/is-alphanumerical/package.json b/node_modules/is-alphanumerical/package.json
new file mode 100644
index 0000000..2689af5
--- /dev/null
+++ b/node_modules/is-alphanumerical/package.json
@@ -0,0 +1,79 @@
+{
+ "name": "is-alphanumerical",
+ "version": "2.0.1",
+ "description": "Check if a character is alphanumerical",
+ "license": "MIT",
+ "keywords": [
+ "string",
+ "character",
+ "char",
+ "code",
+ "alphabetical",
+ "numerical",
+ "alphanumerical"
+ ],
+ "repository": "wooorm/is-alphanumerical",
+ "bugs": "https://github.com/wooorm/is-alphanumerical/issues",
+ "funding": {
+ "type": "github",
+ "url": "https://github.com/sponsors/wooorm"
+ },
+ "author": "Titus Wormer <tituswormer@gmail.com> (https://wooorm.com)",
+ "contributors": [
+ "Titus Wormer <tituswormer@gmail.com> (https://wooorm.com)"
+ ],
+ "sideEffects": false,
+ "type": "module",
+ "main": "index.js",
+ "types": "index.d.ts",
+ "files": [
+ "index.d.ts",
+ "index.js"
+ ],
+ "dependencies": {
+ "is-alphabetical": "^2.0.0",
+ "is-decimal": "^2.0.0"
+ },
+ "devDependencies": {
+ "@types/tape": "^4.0.0",
+ "c8": "^7.0.0",
+ "prettier": "^2.0.0",
+ "remark-cli": "^10.0.0",
+ "remark-preset-wooorm": "^9.0.0",
+ "rimraf": "^3.0.0",
+ "tape": "^5.0.0",
+ "type-coverage": "^2.0.0",
+ "typescript": "^4.0.0",
+ "xo": "^0.46.0"
+ },
+ "scripts": {
+ "prepublishOnly": "npm run build && npm run format",
+ "build": "rimraf \"*.d.ts\" && tsc && type-coverage",
+ "format": "remark . -qfo && prettier . -w --loglevel warn && xo --fix",
+ "test-api": "node --conditions development test.js",
+ "test-coverage": "c8 --check-coverage --branches 100 --functions 100 --lines 100 --statements 100 --reporter lcov npm run test-api",
+ "test": "npm run build && npm run format && npm run test-coverage"
+ },
+ "prettier": {
+ "tabWidth": 2,
+ "useTabs": false,
+ "singleQuote": true,
+ "bracketSpacing": false,
+ "semi": false,
+ "trailingComma": "none"
+ },
+ "xo": {
+ "prettier": true
+ },
+ "remarkConfig": {
+ "plugins": [
+ "preset-wooorm"
+ ]
+ },
+ "typeCoverage": {
+ "atLeast": 100,
+ "detail": true,
+ "strict": true,
+ "ignoreCatch": true
+ }
+}