package.json 972 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. {
  2. "name": "scss-tokenizer",
  3. "version": "0.3.0",
  4. "description": "A tokenzier for Sass' SCSS syntax",
  5. "main": "index.js",
  6. "scripts": {
  7. "test": "jest",
  8. "clean": "rm lib/*",
  9. "build": "npm run clean; babel src/ --out-dir lib"
  10. },
  11. "files": [
  12. "index.js",
  13. "lib"
  14. ],
  15. "repository": {
  16. "type": "git",
  17. "url": "https://github.com/sasstools/scss-tokenizer.git"
  18. },
  19. "keywords": [
  20. "parser",
  21. "tokenizer",
  22. "sass",
  23. "scss",
  24. "libsass"
  25. ],
  26. "author": "xzyfer",
  27. "license": "MIT",
  28. "bugs": {
  29. "url": "https://github.com/sasstools/scss-tokenizer/issues"
  30. },
  31. "homepage": "https://github.com/sasstools/scss-tokenizer",
  32. "dependencies": {
  33. "js-base64": "^2.4.3",
  34. "source-map": "^0.7.1"
  35. },
  36. "devDependencies": {
  37. "babel-cli": "^6.26.0",
  38. "babel-core": "^6.26.0",
  39. "babel-jest": "^22.4.3",
  40. "babel-preset-es2015": "^6.24.1",
  41. "glob": "^7.1.2",
  42. "jest": "^22.4.3",
  43. "sass-spec": "^3.5.1"
  44. }
  45. }