CoolFace
Apppublic

strong-tie/inbound-calls

sourceHugging Faceupdated 2y agoView on Hugging Face
0likes
package.json43 linesDownload Raw Back to ret
1{2  "name": "ret",3  "description": "Tokenizes a string that represents a regular expression.",4  "keywords": [5    "regex",6    "regexp",7    "regular expression",8    "parser",9    "tokenizer"10  ],11  "version": "0.5.0",12  "repository": {13    "type": "git",14    "url": "git://github.com/fent/ret.js.git"15  },16  "author": "fent <fentbox@gmail.com> (https://github.com/fent)",17  "main": "./dist/index.js",18  "files": [19    "dist"20  ],21  "scripts": {22    "test": "nyc --extension .ts --reporter=lcov --reporter=text-summary vows -- --spec test/*-test.js",23    "build": "tsc",24    "prepare": "tsc",25    "lint": "eslint ./lib ./test",26    "lint:fix": "eslint --fix ./lib ./test"27  },28  "devDependencies": {29    "@types/node": "^14.11.8",30    "@typescript-eslint/eslint-plugin": "^4.11.1",31    "@typescript-eslint/parser": "^4.11.1",32    "eslint": "^7.16.0",33    "nyc": "^14.1.1",34    "typescript": "^4.0.3",35    "vows": "^0.8.3"36  },37  "engines": {38    "node": ">=10"39  },40  "license": "MIT",41  "dependencies": {}42}43