package.json 3.6 KB

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