123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- {
- "name": "path-to-regexp",
- "description": "Express style path to RegExp utility",
- "version": "2.4.0",
- "main": "index.js",
- "typings": "index.d.ts",
- "files": [
- "index.js",
- "index.d.ts",
- "LICENSE"
- ],
- "scripts": {
- "lint": "standard",
- "test-spec": "mocha --require ts-node/register -R spec --bail test.ts",
- "test-cov": "istanbul cover node_modules/mocha/bin/_mocha -- --require ts-node/register -R spec test.ts",
- "test": "npm run lint && npm run test-cov"
- },
- "keywords": [
- "express",
- "regexp",
- "route",
- "routing"
- ],
- "component": {
- "scripts": {
- "path-to-regexp": "index.js"
- }
- },
- "license": "MIT",
- "repository": {
- "type": "git",
- "url": "https://github.com/pillarjs/path-to-regexp.git"
- },
- "devDependencies": {
- "@types/chai": "^4.0.4",
- "@types/mocha": "^5.2.5",
- "@types/node": "^10.7.1",
- "chai": "^4.1.1",
- "istanbul": "^0.4.5",
- "mocha": "^5.2.0",
- "standard": "^11.0.1",
- "ts-node": "^7.0.1",
- "typescript": "^3.0.1"
- }
- }
|