package.json 3.31 KB
{
  "_from": "regexpp@^1.0.1",
  "_id": "regexpp@1.1.0",
  "_inBundle": false,
  "_integrity": "sha512-LOPw8FpgdQF9etWMaAfG/WRthIdXJGYp4mJ2Jgn/2lpkbod9jPn0t9UqN7AxBOKNfzRbYyVfgc7Vk4t/MpnXgw==",
  "_location": "/regexpp",
  "_phantomChildren": {},
  "_requested": {
    "type": "range",
    "registry": true,
    "raw": "regexpp@^1.0.1",
    "name": "regexpp",
    "escapedName": "regexpp",
    "rawSpec": "^1.0.1",
    "saveSpec": null,
    "fetchSpec": "^1.0.1"
  },
  "_requiredBy": [
    "/eslint"
  ],
  "_resolved": "https://registry.npmjs.org/regexpp/-/regexpp-1.1.0.tgz",
  "_shasum": "0e3516dd0b7904f413d2d4193dce4618c3a689ab",
  "_spec": "regexpp@^1.0.1",
  "_where": "/Users/hyewon/Documents/KHU/capstone2/2016104140/code/lms_web/node_modules/eslint",
  "author": {
    "name": "Toru Nagashima",
    "url": "https://github.com/mysticatea"
  },
  "bugs": {
    "url": "https://github.com/mysticatea/regexpp/issues"
  },
  "bundleDependencies": false,
  "dependencies": {},
  "deprecated": false,
  "description": "Regular expression parser for ECMAScript 2018.",
  "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"
  },
  "engines": {
    "node": ">=4.0.0"
  },
  "files": [
    "index.*"
  ],
  "homepage": "https://github.com/mysticatea/regexpp#readme",
  "keywords": [
    "regexp",
    "regular",
    "expression",
    "parser",
    "validator",
    "ast",
    "abstract",
    "syntax",
    "tree",
    "ecmascript",
    "es2015",
    "es2016",
    "es2017",
    "es2018",
    "annexB"
  ],
  "license": "MIT",
  "main": "index",
  "name": "regexpp",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/mysticatea/regexpp.git"
  },
  "scripts": {
    "build": "run-s build:*",
    "build:dts": "dts-bundle --name regexpp --main .temp/index.d.ts --out ../index.d.ts",
    "build:js": "rollup -c rollup-js.config.js",
    "build:mjs": "rollup -c rollup-mjs.config.js",
    "build:tsc": "tsc --module es2015 --target es2015",
    "clean": "rimraf .temp index.*",
    "lint": "eslint src test tools --ext .ts",
    "postversion": "git push && git push --tags",
    "prebuild": "npm run -s clean",
    "pretest": "run-s build lint",
    "preversion": "npm test",
    "prewatch": "npm run -s clean",
    "test": "_mocha --require ts-node/register --reporter dot --timeout 10000 \"test/*.ts\"",
    "update:ids": "ts-node tools/update-unicode-ids.ts",
    "update:test": "ts-node tools/update-fixtures.ts",
    "version": "npm run -s build",
    "watch": "npm run -s test -- --watch-extensions .ts --watch --growl"
  },
  "version": "1.1.0"
}