You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

package.json 3.9 KiB

3 年之前
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111
  1. {
  2. "_args": [
  3. [
  4. "redux-thunk@2.3.0",
  5. "/Users/michielcarman/Server Code/Repository/clients-rpm-kit-manager/code/RPM.KitManager/RPM.KitManager.Web/ClientApp"
  6. ]
  7. ],
  8. "_from": "redux-thunk@2.3.0",
  9. "_id": "redux-thunk@2.3.0",
  10. "_inBundle": false,
  11. "_integrity": "sha512-km6dclyFnmcvxhAcrQV2AkZmPQjzPDjgVlQtR0EQjxZPyJ0BnMf3in1ryuR8A2qU0HldVRfxYXbFSKlI3N7Slw==",
  12. "_location": "/redux-thunk",
  13. "_phantomChildren": {},
  14. "_requested": {
  15. "type": "version",
  16. "registry": true,
  17. "raw": "redux-thunk@2.3.0",
  18. "name": "redux-thunk",
  19. "escapedName": "redux-thunk",
  20. "rawSpec": "2.3.0",
  21. "saveSpec": null,
  22. "fetchSpec": "2.3.0"
  23. },
  24. "_requiredBy": [
  25. "/"
  26. ],
  27. "_resolved": "https://registry.npmjs.org/redux-thunk/-/redux-thunk-2.3.0.tgz",
  28. "_spec": "2.3.0",
  29. "_where": "/Users/michielcarman/Server Code/Repository/clients-rpm-kit-manager/code/RPM.KitManager/RPM.KitManager.Web/ClientApp",
  30. "author": {
  31. "name": "Dan Abramov",
  32. "email": "dan.abramov@me.com"
  33. },
  34. "bugs": {
  35. "url": "https://github.com/reduxjs/redux-thunk/issues"
  36. },
  37. "description": "Thunk middleware for Redux.",
  38. "devDependencies": {
  39. "babel-cli": "^6.6.5",
  40. "babel-core": "^6.6.5",
  41. "babel-eslint": "^5.0.0-beta4",
  42. "babel-loader": "^6.2.4",
  43. "babel-plugin-check-es2015-constants": "^6.6.5",
  44. "babel-plugin-transform-es2015-arrow-functions": "^6.5.2",
  45. "babel-plugin-transform-es2015-block-scoped-functions": "^6.6.5",
  46. "babel-plugin-transform-es2015-block-scoping": "^6.6.5",
  47. "babel-plugin-transform-es2015-classes": "^6.6.5",
  48. "babel-plugin-transform-es2015-computed-properties": "^6.6.5",
  49. "babel-plugin-transform-es2015-destructuring": "^6.6.5",
  50. "babel-plugin-transform-es2015-for-of": "^6.6.0",
  51. "babel-plugin-transform-es2015-function-name": "^6.5.0",
  52. "babel-plugin-transform-es2015-literals": "^6.5.0",
  53. "babel-plugin-transform-es2015-modules-commonjs": "^6.6.5",
  54. "babel-plugin-transform-es2015-object-super": "^6.6.5",
  55. "babel-plugin-transform-es2015-parameters": "^6.6.5",
  56. "babel-plugin-transform-es2015-shorthand-properties": "^6.5.0",
  57. "babel-plugin-transform-es2015-spread": "^6.6.5",
  58. "babel-plugin-transform-es2015-sticky-regex": "^6.5.0",
  59. "babel-plugin-transform-es2015-template-literals": "^6.6.5",
  60. "babel-plugin-transform-es2015-unicode-regex": "^6.5.0",
  61. "babel-plugin-transform-es3-member-expression-literals": "^6.5.0",
  62. "babel-plugin-transform-es3-property-literals": "^6.5.0",
  63. "chai": "^3.2.0",
  64. "cross-env": "^1.0.7",
  65. "eslint": "^1.10.2",
  66. "eslint-config-airbnb": "1.0.2",
  67. "eslint-plugin-react": "^4.1.0",
  68. "mocha": "^2.2.5",
  69. "redux": "~4.0.0",
  70. "rimraf": "^2.5.2",
  71. "typescript": "~2.6.2",
  72. "typings-tester": "^0.3.1",
  73. "webpack": "^1.12.14"
  74. },
  75. "files": [
  76. "lib",
  77. "es",
  78. "src",
  79. "dist",
  80. "index.d.ts"
  81. ],
  82. "homepage": "https://github.com/reduxjs/redux-thunk",
  83. "keywords": [
  84. "redux",
  85. "thunk",
  86. "middleware",
  87. "redux-middleware",
  88. "flux"
  89. ],
  90. "license": "MIT",
  91. "main": "lib/index.js",
  92. "module": "es/index.js",
  93. "name": "redux-thunk",
  94. "repository": {
  95. "type": "git",
  96. "url": "git+https://github.com/reduxjs/redux-thunk.git"
  97. },
  98. "scripts": {
  99. "build": "npm run build:commonjs && npm run build:umd && npm run build:umd:min && npm run build:es",
  100. "build:commonjs": "cross-env BABEL_ENV=commonjs babel src --out-dir lib",
  101. "build:es": "cross-env BABEL_ENV=es babel src --out-dir es",
  102. "build:umd": "cross-env BABEL_ENV=commonjs NODE_ENV=development webpack",
  103. "build:umd:min": "cross-env BABEL_ENV=commonjs NODE_ENV=production webpack",
  104. "clean": "rimraf lib dist es",
  105. "lint": "eslint src test",
  106. "prepare": "npm run clean && npm run lint && npm run test && npm run build",
  107. "test": "cross-env BABEL_ENV=commonjs mocha --compilers js:babel-core/register --reporter spec test/*.js"
  108. },
  109. "typings": "./index.d.ts",
  110. "version": "2.3.0"
  111. }