package.json 768 B

123456789101112131415161718192021222324252627282930313233
  1. {
  2. "name": "reduce-css-calc",
  3. "version": "1.3.0",
  4. "description": "Reduce CSS calc() function to the maximum",
  5. "keywords": [
  6. "css",
  7. "calculation",
  8. "calc"
  9. ],
  10. "author": "Maxime Thirouin",
  11. "license": "MIT",
  12. "repository": "https://github.com/MoOx/reduce-css-calc.git",
  13. "files": [
  14. "index.js"
  15. ],
  16. "dependencies": {
  17. "balanced-match": "^0.4.2",
  18. "math-expression-evaluator": "^1.2.14",
  19. "reduce-function-call": "^1.0.1"
  20. },
  21. "devDependencies": {
  22. "jscs": "^1.5.9",
  23. "jshint": "^2.5.2",
  24. "npmpub": "^3.0.3",
  25. "tape": "^2.13.4"
  26. },
  27. "scripts": {
  28. "jscs": "jscs *.js **/*.js",
  29. "jshint": "jshint . --exclude node_modules",
  30. "test": "npm run jscs && npm run jshint && tape test",
  31. "release": "npmpub"
  32. }
  33. }