UNPKG

halfcab

Version:

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

84 lines (83 loc) 2.2 kB
{ "name": "halfcab", "version": "11.1.1", "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", "esm": true, "scripts": { "test": "ESM_OPTIONS={cjs:true,mode:auto} mocha --require esm './{,!(node_modules)/**}/test.js'", "test:coverage": "nyc --reporter=html --check-coverage --lines 75 --functions 75 --branches 75 npm test", "test:coveralls": "nyc npm test && nyc report --reporter=text-lcov | coveralls", "versionbump:fix": "npm version patch --no-git-tag-version", "versionbump:feature": "npm version minor --no-git-tag-version", "versionbump:breakingchanges": "npm version major --no-git-tag-version", "npm-publish": "npm publish" }, "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": { "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": "^6.1.4", "nyc": "^14.1.1", "sinon": "^7.2.3", "sinon-chai": "^3.0.0" }, "dependencies": { "axios": "^0.19.0", "csjs-inject": "^1.0.1", "deep-object-diff": "^1.1.0", "deepmerge": "^3.2.0", "event-emitter": "^0.3.5", "fast-clone": "^1.5.13", "html-entities": "^1.2.1", "marked": "^0.6.0", "nanocomponent": "^6.5.2", "nanohtml": "^1.4.0", "nanolru": "^1.0.0", "nanomorph": "^5.2.0", "qs": "^6.5.2", "shifty-router": "^0.1.1" }, "peerDependencies": { "esm": "^3.2.22" }, "nyc": { "extension": [ ".mjs" ], "exclude": [ "**/test.mjs" ], "require": [ "esm" ], "reporter": [ "text-lcov" ] } }