Anton Gilgur 9afc8df0a1 (fix): upgrade object-hash to support async/await syntax
- object-hash v2.0.2 adds/fixes support for async functions
  - object-hash v2 has no breaking changes, just drops testing of
    Node < 6
    - Node 5 was EOL April 2018, and on top of that Node 6
      was EOL April 2019, and Node 8 was EOL December 2019, so this is
      still more tested support than is necessary

- objectHashIgnoreUnknownHack isn't useful for its original purpose to
  workaround this, but is still useful for other types of
  objects/syntaxes that object-hash may not handle yet
  (e.g. async generator functions), so leave the hack in
  - might be good to add a warning though? so that those who used this
    option for async/await can upgrade and remove it (and have a
    stable cache again)
2020-02-10 21:26:42 -05:00

75 lines
2.1 KiB
JSON

{
"name": "rollup-plugin-typescript2",
"version": "0.25.4",
"description": "Seamless integration between Rollup and TypeScript. Now with errors.",
"main": "dist/rollup-plugin-typescript2.cjs.js",
"module": "dist/rollup-plugin-typescript2.es.js",
"jsnext:main": "dist/rollup-plugin-typescript2.es.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"keywords": [
"rollup-plugin-typescript2",
"rollup-plugin-typescript",
"rollup-plugin",
"typescript",
"es2015",
"rollup",
"npm"
],
"license": "MIT",
"homepage": "https://github.com/ezolenko/rollup-plugin-typescript2",
"author": "@ezolenko",
"scripts": {
"prebuild": "rimraf dist/*",
"build": "rimraf dist/* && rollup -c",
"watch": "rollup -c rollup.config.self.js -w ",
"build-self": "rimraf dist/* && rollup -c rollup.config.self.js",
"lint": "tslint -c ./tslint.json src/*.ts ./*.js"
},
"dependencies": {
"find-cache-dir": "^3.0.0",
"fs-extra": "8.1.0",
"resolve": "1.12.0",
"rollup-pluginutils": "2.8.1",
"tslib": "1.10.0"
},
"peerDependencies": {
"rollup": ">=1.26.3",
"typescript": ">=2.4.0"
},
"devDependencies": {
"@types/colors": "1.2.1",
"@types/find-cache-dir": "^2.0.0",
"@types/fs-extra": "8.0.0",
"@types/graphlib": "2.1.5",
"@types/lodash": "4.14.136",
"@types/node": "8.0.47",
"@types/object-hash": "1.3.0",
"@types/resolve": "0.0.8",
"@types/semver": "6.0.1",
"colors": "1.3.3",
"graphlib": "2.1.7",
"lodash": "4.17.15",
"object-hash": "2.0.2",
"rimraf": "3.0.0",
"rollup": "^1.26.3 ",
"rollup-plugin-commonjs": "10.1.0",
"rollup-plugin-node-resolve": "5.2.0",
"rollup-plugin-re": "1.0.7",
"rollup-plugin-typescript2": "0.24.3",
"rollup-watch": "4.3.1",
"semver": "6.3.0",
"tslint": "5.19.0",
"typescript": "3.6.2"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ezolenko/rollup-plugin-typescript2.git"
},
"bugs": {
"url": "https://github.com/ezolenko/rollup-plugin-typescript2/issues"
}
}