package.json 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126
  1. {
  2. "_from": "reselect@^3.0.1",
  3. "_id": "reselect@3.0.1",
  4. "_inBundle": false,
  5. "_integrity": "sha1-79qpjqdFEyTQkrKyFjpqHXqaIUc=",
  6. "_location": "/reselect",
  7. "_phantomChildren": {},
  8. "_requested": {
  9. "type": "range",
  10. "registry": true,
  11. "raw": "reselect@^3.0.1",
  12. "name": "reselect",
  13. "escapedName": "reselect",
  14. "rawSpec": "^3.0.1",
  15. "saveSpec": null,
  16. "fetchSpec": "^3.0.1"
  17. },
  18. "_requiredBy": [
  19. "/babel-plugin-module-resolver"
  20. ],
  21. "_resolved": "https://registry.npmjs.org/reselect/-/reselect-3.0.1.tgz",
  22. "_shasum": "efdaa98ea7451324d092b2b2163a6a1d7a9a2147",
  23. "_spec": "reselect@^3.0.1",
  24. "_where": "D:\\jiayue\\pig-ui\\node_modules\\babel-plugin-module-resolver",
  25. "authors": [
  26. "Lee Bannard",
  27. "Robert Binna",
  28. "Martijn Faassen",
  29. "Philip Spitzlinger"
  30. ],
  31. "betterScripts": {
  32. "test": {
  33. "command": "mocha --compilers js:babel-register --ui tdd --recursive",
  34. "env": {
  35. "NODE_ENV": "test"
  36. }
  37. },
  38. "test:cov": {
  39. "command": "nyc --reporter=lcov --reporter=text mocha --compilers js:babel-register --ui tdd",
  40. "env": {
  41. "NODE_ENV": "test",
  42. "COVERAGE": "true"
  43. }
  44. },
  45. "test:typescript": {
  46. "command": "typings-tester --dir typescript_test"
  47. },
  48. "compile:commonjs": {
  49. "command": "babel -d lib/ src/ && ncp ./src/index.d.ts ./lib/index.d.ts",
  50. "env": {
  51. "NODE_ENV": "commonjs"
  52. }
  53. },
  54. "compile:umd": {
  55. "command": "mkdirp dist/ && babel -o dist/reselect.js src/",
  56. "env": {
  57. "NODE_ENV": "umd"
  58. }
  59. }
  60. },
  61. "bugs": {
  62. "url": "https://github.com/reactjs/reselect/issues"
  63. },
  64. "bundleDependencies": false,
  65. "deprecated": false,
  66. "description": "Selectors for Redux.",
  67. "devDependencies": {
  68. "babel-cli": "^6.7.5",
  69. "babel-plugin-check-es2015-constants": "^6.7.2",
  70. "babel-plugin-transform-es2015-arrow-functions": "^6.5.2",
  71. "babel-plugin-transform-es2015-block-scoping": "^6.7.1",
  72. "babel-plugin-transform-es2015-function-name": "^6.5.0",
  73. "babel-plugin-transform-es2015-modules-commonjs": "^6.7.4",
  74. "babel-plugin-transform-es2015-modules-umd": "^6.6.5",
  75. "babel-plugin-transform-es2015-parameters": "^6.7.0",
  76. "babel-plugin-transform-es2015-shorthand-properties": "^6.5.0",
  77. "babel-plugin-transform-es2015-spread": "^6.6.5",
  78. "babel-plugin-transform-es2015-template-literals": "^6.6.5",
  79. "babel-register": "^6.7.2",
  80. "better-npm-run": "0.0.8",
  81. "chai": "^3.0.0",
  82. "codecov.io": "^0.1.6",
  83. "coveralls": "^2.11.4",
  84. "eslint": "^2.11",
  85. "eslint-plugin-react": "^5.1.1",
  86. "lodash.memoize": "^4.1.0",
  87. "mkdirp": "^0.5.1",
  88. "mocha": "^2.2.5",
  89. "ncp": "^2.0.0",
  90. "nyc": "^6.4.0",
  91. "typescript": "^2.1.4",
  92. "typings-tester": "^0.2.0"
  93. },
  94. "files": [
  95. "lib",
  96. "src",
  97. "dist",
  98. "es"
  99. ],
  100. "homepage": "https://github.com/reactjs/reselect#readme",
  101. "jsnext:main": "es/index.js",
  102. "keywords": [
  103. "react",
  104. "redux"
  105. ],
  106. "license": "MIT",
  107. "main": "lib/index.js",
  108. "name": "reselect",
  109. "repository": {
  110. "type": "git",
  111. "url": "git+https://github.com/reactjs/reselect.git"
  112. },
  113. "scripts": {
  114. "compile": "npm run compile:commonjs && npm run compile:umd && npm run compile:es",
  115. "compile:commonjs": "better-npm-run compile:commonjs",
  116. "compile:es": "babel -d es/ src/",
  117. "compile:umd": "better-npm-run compile:umd",
  118. "lint": "eslint src test",
  119. "prepublish": "npm run compile",
  120. "test": "better-npm-run test",
  121. "test:cov": "better-npm-run test:cov",
  122. "test:typescript": "better-npm-run test:typescript"
  123. },
  124. "typings": "lib/index.d.ts",
  125. "version": "3.0.1"
  126. }