A stylesheet language written in TypeScript that compiles to CSS
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

123456789101112131415161718192021222324252627
  1. {
  2. "name": "moss",
  3. "version": "0.1.0",
  4. "description": "A CSS preprocessor with a Lisp-inspired syntax",
  5. "scripts": {
  6. "build": "tsc",
  7. "test": "ts-node ./node_modules/.bin/tape ./src/tests/**/*.test.ts | faucet",
  8. "prettier": "prettier --write ./**/*.ts"
  9. },
  10. "bin": {
  11. "moss": "./dist/moss.js"
  12. },
  13. "keywords": [],
  14. "author": "Dylan Baker <dylanbaker.ct@gmail.com>",
  15. "license": "MIT",
  16. "devDependencies": {
  17. "@types/minimist": "^1.2.0",
  18. "@types/node": "^10.12.18",
  19. "@types/tape": "^4.2.33",
  20. "faucet": "0.0.1",
  21. "minimist": "^1.2.5",
  22. "tape": "^4.9.2",
  23. "ts-node": "^7.0.1",
  24. "tslint": "^5.12.1",
  25. "typescript": "^3.2.2"
  26. }
  27. }