package.json 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. {
  2. "name": "icss-replace-symbols",
  3. "version": "1.1.0",
  4. "description": "Replacing symbols during the linking phase of ICSS",
  5. "main": "lib/index.js",
  6. "scripts": {
  7. "lint": "standard src test",
  8. "build": "babel --out-dir lib src",
  9. "autotest": "chokidar src test -c 'npm test'",
  10. "test": "mocha --compilers js:babel-register",
  11. "posttest": "npm run lint && npm run build",
  12. "travis": "npm run test",
  13. "prepublish": "npm run build"
  14. },
  15. "repository": {
  16. "type": "git",
  17. "url": "git+https://github.com/css-modules/icss-replace-symbols.git"
  18. },
  19. "keywords": [
  20. "css",
  21. "modules",
  22. "icss",
  23. "postcss"
  24. ],
  25. "author": "Glen Maddern",
  26. "license": "ISC",
  27. "bugs": {
  28. "url": "https://github.com/css-modules/icss-replace-symbols/issues"
  29. },
  30. "homepage": "https://github.com/css-modules/icss-replace-symbols#readme",
  31. "devDependencies": {
  32. "babel-cli": "^6.18.0",
  33. "babel-preset-es2015": "^6.18.0",
  34. "babel-register": "^6.18.0",
  35. "chokidar": "^1.3.0",
  36. "mocha": "^3.1.2",
  37. "postcss": "^6.0.1",
  38. "standard": "^8.4.0"
  39. }
  40. }