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.

package.json 667B

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