UNPKG

halfcab

Version:

A simple universal JavaScript framework focused on making use of es2015 template strings to build components.

83 lines (82 loc) 2.16 kB
{ "name": "halfcab", "version": "15.0.9", "type": "module", "description": "A simple universal JavaScript framework focused on making use of es2015 template strings to build components.", "main": "halfcab.mjs", "module": "halfcab.mjs", "jsnext:main": "halfcab.mjs", "scripts": { "test": "mocha './{,!(node_modules)/**}/test.js'", "test:coverage": "c8 --reporter=html --check-coverage --lines 75 --functions 75 --branches 75 npm test", "test:coveralls": "c8 npm test && c8 report --reporter=text-lcov | coveralls", "versionbump:fix": "npm version patch --no-git-tag-version", "versionbump:feature": "npm version major --no-git-tag-version", "versionbump:breakingchanges": "npm version major --no-git-tag-version", "npm-publish": "npm publish", "start:example": "npx --yes serve . -l 5173" }, "repository": { "type": "git", "url": "git+https://github.com/lorengreenfield/halfcab.git" }, "keywords": [ "newschool", "oldschool", "data", "binding", "es2015", "es6", "component" ], "author": "Loren Greenfield", "license": "MIT", "bugs": { "url": "https://github.com/lorengreenfield/halfcab/issues" }, "homepage": "https://github.com/lorengreenfield/halfcab#readme", "devDependencies": { "c8": "^7.1.0", "chai": "^4.2.0", "coveralls": "^3.0.2", "dirty-chai": "^2.0.1", "esm": "^3.2.25", "jsdom": "^15.1.1", "jsdom-global": "^3.0.2", "mocha": "^7.1.2", "sinon": "^7.2.3", "sinon-chai": "^3.0.0" }, "dependencies": { "@lit-labs/ssr": "^4.0.0", "@lit-labs/ssr-client": "^1.1.8", "axios": "^0.26.1", "csjs-inject": "^1.0.1", "deep-object-diff": "^1.1.0", "deepmerge": "^4.0.0", "event-emitter": "^0.3.5", "fast-clone": "^1.5.13", "html-entities": "^2.3.2", "lit": "^3.3.2", "marked": "^0.7.0", "qs": "^6.5.2", "shifty-router": "^0.1.1" }, "peerDependencies": { "esm": "^3.2.22" }, "c8": { "extension": [ ".mjs" ], "exclude": [ "**/test.mjs" ], "require": [ "esm" ], "reporter": [ "text-lcov" ] } }