123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- {
- "name": "regexp-util",
- "version": "1.2.2",
- "description": "utilities for generating regular expression",
- "keywords": [
- "regex"
- ],
- "main": "lib/index.js",
- "types": "lib/index.d.ts",
- "repository": "https://github.com/ikatyang/regexp-util",
- "homepage": "https://github.com/ikatyang/regexp-util#readme",
- "author": {
- "name": "Ika",
- "email": "ikatyang@gmail.com",
- "url": "https://github.com/ikatyang"
- },
- "license": "MIT",
- "scripts": {
- "prepublish": "yarn run build",
- "lint": "tslint -p ./tsconfig.json --type-check",
- "test": "jest",
- "prebuild": "rm -rf ./lib",
- "build": "tsc -p ./tsconfig.build.json",
- "release": "standard-version"
- },
- "dependencies": {
- "tslib": "^1.9.0"
- },
- "devDependencies": {
- "@types/jest": "21.1.10",
- "jest": "21.2.1",
- "prettier": "1.11.1",
- "prettier-config-ikatyang": "1.1.1",
- "standard-version": "4.3.0",
- "ts-jest": "21.2.4",
- "tslint": "5.9.1",
- "tslint-config-ikatyang": "2.5.1",
- "tslint-config-prettier": "1.10.0",
- "tslint-plugin-prettier": "1.3.0",
- "typescript": "2.7.2"
- },
- "engines": {
- "node": ">= 4"
- },
- "files": [
- "/lib/**/*"
- ]
- }
|