| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788 |
- {
- "name": "regexpp",
- "version": "1.1.0",
- "description": "Regular expression parser for ECMAScript 2018.",
- "engines": {
- "node": ">=4.0.0"
- },
- "main": "index",
- "files": [
- "index.*"
- ],
- "dependencies": {},
- "devDependencies": {
- "@types/eslint": "^4.16.0",
- "@types/mocha": "^2.2.48",
- "@types/node": "^9.4.6",
- "babel-core": "^6.26.0",
- "babel-plugin-transform-es2015-destructuring": "^6.23.0",
- "babel-plugin-transform-es2015-parameters": "^6.24.1",
- "babel-plugin-transform-es2015-spread": "^6.22.0",
- "dts-bundle": "^0.7.3",
- "eslint": "^4.18.0",
- "eslint-config-mysticatea": "^13.0.2",
- "eslint-config-prettier": "^2.9.0",
- "eslint-plugin-prettier": "^2.4.0",
- "mocha": "^5.0.1",
- "npm-run-all": "^4.1.2",
- "prettier": "^1.9.2",
- "rimraf": "^2.6.2",
- "rollup": "^0.56.1",
- "rollup-plugin-babel": "^3.0.3",
- "rollup-plugin-node-resolve": "^3.0.3",
- "rollup-plugin-sourcemaps": "^0.4.2",
- "rollup-watch": "^4.3.1",
- "ts-node": "^5.0.0",
- "typescript": "^2.7.2",
- "typescript-eslint-parser": "^14.0.0"
- },
- "scripts": {
- "prebuild": "npm run -s clean",
- "build": "run-s build:*",
- "build:tsc": "tsc --module es2015 --target es2015",
- "build:mjs": "rollup -c rollup-mjs.config.js",
- "build:js": "rollup -c rollup-js.config.js",
- "build:dts": "dts-bundle --name regexpp --main .temp/index.d.ts --out ../index.d.ts",
- "clean": "rimraf .temp index.*",
- "lint": "eslint src test tools --ext .ts",
- "pretest": "run-s build lint",
- "test": "_mocha --require ts-node/register --reporter dot --timeout 10000 \"test/*.ts\"",
- "update:test": "ts-node tools/update-fixtures.ts",
- "update:ids": "ts-node tools/update-unicode-ids.ts",
- "preversion": "npm test",
- "version": "npm run -s build",
- "postversion": "git push && git push --tags",
- "prewatch": "npm run -s clean",
- "watch": "npm run -s test -- --watch-extensions .ts --watch --growl"
- },
- "repository": {
- "type": "git",
- "url": "git+https://github.com/mysticatea/regexpp.git"
- },
- "keywords": [
- "regexp",
- "regular",
- "expression",
- "parser",
- "validator",
- "ast",
- "abstract",
- "syntax",
- "tree",
- "ecmascript",
- "es2015",
- "es2016",
- "es2017",
- "es2018",
- "annexB"
- ],
- "author": "Toru Nagashima (https://github.com/mysticatea)",
- "license": "MIT",
- "bugs": {
- "url": "https://github.com/mysticatea/regexpp/issues"
- },
- "homepage": "https://github.com/mysticatea/regexpp#readme",
- "__npminstall_done": "Thu Dec 24 2020 20:20:58 GMT+0800 (CST)",
- "_from": "regexpp@1.1.0",
- "_resolved": "https://registry.npm.taobao.org/regexpp/download/regexpp-1.1.0.tgz"
- }
|