UNPKG

@muban/template

Version:

Writing templates for Muban components during development

50 lines (49 loc) 1.36 kB
{ "name": "@muban/template", "version": "1.0.0-alpha.4", "description": "Writing templates for Muban components during development", "keywords": [ "muban", "component", "template" ], "repository": "git@github.com:mubanjs/muban-template.git", "author": "Arjan van Wijk <thanarie@gmail.com>", "license": "MIT", "main": "./dist/cjs/index.js", "module": "./dist/esm/index.js", "types": "./dist/esm/index.d.ts", "publishConfig": { "access": "public" }, "files": [ "dist/**/*", "README.md" ], "scripts": { "build": "npm-run-all -s clean build:*", "build:ts-cjs": "tsc -p ./tsconfig.build.cjs.json", "build:ts-esm": "tsc -p ./tsconfig.build.esm.json", "clean": "npm-run-all clean:*", "clean:test": "shx rm -rf coverage .nyc_output", "clean:npm": "shx rm -rf dist", "lint": "eslint --ext .js,.jsx,.ts,.tsx ./src", "test": "jest ./src/", "check-types": "tsc --project tsconfig.json --noEmit --noUnusedLocals", "prepublishOnly": "npm run build" }, "dependencies": { "htm": "^3.1.0", "vhtml": "^2.2.0" }, "devDependencies": { "@muban/eslint-config": "^1.0.0-alpha.5", "@types/jest": "^26.0.15", "jest": "^26.3.0", "npm-run-all": "^4.1.5", "prettier": "^2.0.5", "shx": "^0.3.3", "ts-jest": "^26.2.0", "typescript": "^4.1.3" } }