Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.
 
 
 
 

125 строки
4.0 KiB

  1. {
  2. "_args": [
  3. [
  4. "jss-default-unit@8.0.2",
  5. "/Users/michielcarman/Server Code/Repository/clients-rpm-kit-manager/code/RPM.KitManager/RPM.KitManager.Web/ClientApp"
  6. ]
  7. ],
  8. "_from": "jss-default-unit@8.0.2",
  9. "_id": "jss-default-unit@8.0.2",
  10. "_inBundle": false,
  11. "_integrity": "sha512-WxNHrF/18CdoAGw2H0FqOEvJdREXVXLazn7PQYU7V6/BWkCV0GkmWsppNiExdw8dP4TU1ma1dT9zBNJ95feLmg==",
  12. "_location": "/jss-default-unit",
  13. "_phantomChildren": {},
  14. "_requested": {
  15. "type": "version",
  16. "registry": true,
  17. "raw": "jss-default-unit@8.0.2",
  18. "name": "jss-default-unit",
  19. "escapedName": "jss-default-unit",
  20. "rawSpec": "8.0.2",
  21. "saveSpec": null,
  22. "fetchSpec": "8.0.2"
  23. },
  24. "_requiredBy": [
  25. "/@material-ui/core"
  26. ],
  27. "_resolved": "https://registry.npmjs.org/jss-default-unit/-/jss-default-unit-8.0.2.tgz",
  28. "_spec": "8.0.2",
  29. "_where": "/Users/michielcarman/Server Code/Repository/clients-rpm-kit-manager/code/RPM.KitManager/RPM.KitManager.Web/ClientApp",
  30. "author": {
  31. "name": "Oleg Slobodskoi",
  32. "email": "oleg008@gmail.com"
  33. },
  34. "bugs": {
  35. "url": "https://github.com/cssinjs/jss-default-unit/issues"
  36. },
  37. "dependencies": {},
  38. "description": "JSS plugin that adds default custom unit to numeric values where needed",
  39. "devDependencies": {
  40. "babel-cli": "^6.5.1",
  41. "babel-core": "^6.5.1",
  42. "babel-eslint": "^7.1.0",
  43. "babel-loader": "^6.2.4",
  44. "babel-plugin-transform-es3-member-expression-literals": "^6.8.0",
  45. "babel-plugin-transform-es3-property-literals": "^6.8.0",
  46. "babel-preset-es2015": "^6.9.0",
  47. "babel-preset-stage-0": "^6.5.0",
  48. "common-tags": "^1.4.0",
  49. "cross-env": "^3.1.3",
  50. "es5-shim": "^4.5.9",
  51. "eslint": "^3.9.1",
  52. "eslint-config-airbnb": "^12.0.0",
  53. "eslint-config-jss": "^2.4.0",
  54. "eslint-plugin-import": "^2.1.0",
  55. "eslint-plugin-jsx-a11y": "^2.2.3",
  56. "eslint-plugin-react": "^6.5.0",
  57. "expect.js": "^0.3.1",
  58. "jss": "^9.4.0",
  59. "jss-expand": "^5.1.0",
  60. "karma": "^1.1.1",
  61. "karma-benchmark": "^0.6.0",
  62. "karma-benchmark-reporter": "^0.1.1",
  63. "karma-browserstack-launcher": "^1.0.0",
  64. "karma-chrome-launcher": "^2.0.0",
  65. "karma-coverage": "^1.1.1",
  66. "karma-mocha": "^1.1.1",
  67. "karma-mocha-reporter": "^2.2.0",
  68. "karma-sourcemap-loader": "^0.3.7",
  69. "karma-webpack": "^1.8.0",
  70. "lint-staged": "^3.0.3",
  71. "mocha": "^3.0.2",
  72. "pre-commit": "^1.1.3",
  73. "rimraf": "^2.5.4",
  74. "webpack": "^1.13.1",
  75. "zen-observable": "^0.6.0"
  76. },
  77. "engines": {},
  78. "homepage": "https://github.com/cssinjs/jss-default-unit#readme",
  79. "keywords": [
  80. "cssinjs",
  81. "css-in-js",
  82. "css in js",
  83. "jss",
  84. "plugin",
  85. "px",
  86. "unit",
  87. "default-unit"
  88. ],
  89. "license": "MIT",
  90. "lint-staged": {
  91. "./src/*.js": [
  92. "eslint",
  93. "git add"
  94. ]
  95. },
  96. "main": "lib/index.js",
  97. "name": "jss-default-unit",
  98. "peerDependencies": {
  99. "jss": "^9.4.0"
  100. },
  101. "pre-commit": "lint:staged",
  102. "repository": {
  103. "type": "git",
  104. "url": "git+ssh://git@github.com/cssinjs/jss-default-unit.git"
  105. },
  106. "scripts": {
  107. "all": "npm run lint && npm run test && npm run build",
  108. "build": "npm run clean && npm run build:lib && npm run build:tests && npm run build:dist",
  109. "build:dist": "npm run build:dist:max && npm run build:dist:min",
  110. "build:dist:max": "cross-env NODE_ENV=development webpack src/index.js dist/jss-default-unit.js",
  111. "build:dist:min": "cross-env NODE_ENV=production webpack src/index.js dist/jss-default-unit.min.js",
  112. "build:lib": "babel src --out-dir lib",
  113. "build:tests": "npm run build:tests:lib && npm run build:tests:local",
  114. "build:tests:lib": "cross-env NODE_ENV=test babel src --out-dir tests",
  115. "build:tests:local": "cross-env NODE_ENV=test webpack src/index.test.js tmp/tests.js",
  116. "clean": "rimraf {lib,dist,tests,tmp}/*",
  117. "lint": "eslint ./src",
  118. "lint:staged": "lint-staged",
  119. "prepublishOnly": "npm run all",
  120. "test": "cross-env NODE_ENV=test karma start --single-run ",
  121. "test:watch": "cross-env NODE_ENV=test karma start"
  122. },
  123. "version": "8.0.2"
  124. }