UNPKG

@cycle/html

Version:

A driver for HTML strings based on Snabbdom and the DOM driver

80 lines (79 loc) 2.03 kB
{ "name": "@cycle/html", "version": "3.4.0", "description": "A driver for HTML strings based on Snabbdom and the DOM driver", "license": "MIT", "homepage": "https://cycle.js.org", "bugs": "https://github.com/cyclejs/cyclejs/issues", "repository": "https://github.com/cyclejs/cyclejs/tree/master/html", "contributors": [ { "name": "Andre Staltz", "email": "andre@staltz.com" }, { "name": "Tylor Steinberger", "email": "tlsteinberger167@gmail.com" }, { "name": "Frederik Krautwald", "email": "fkrautwald@gmail.com" } ], "keywords": [ "reactive", "framework", "rxjs", "rx", "unidirectional", "mvi", "virtual-dom" ], "main": "lib/cjs/index.js", "module": "lib/es6/index.js", "typings": "lib/cjs/index.d.ts", "types": "lib/cjs/index.d.ts", "dependencies": { "@cycle/dom": "^22.2.0", "@cycle/run": "^5.2.0", "snabbdom": "0.7.2", "snabbdom-to-html": "5.1.1", "xstream": "*" }, "devDependencies": { "@cycle/isolate": "^5.0.0", "@types/mocha": "~5.2.7", "@types/node": "^10.12.11", "@types/sinon": "^5.0.7", "mocha": "~6.2.0", "simulant": "^0.2.2", "sinon": "^7.1.1", "snabbdom-pragma": "^2.8.0", "ts-node": "^7.0.1", "tslint": "^5.11.0", "typescript": "=3.2.4", "xstream": "11.x" }, "engines": { "node": ">=0.10.0" }, "funding": { "type": "opencollective", "url": "https://opencollective.com/cyclejs" }, "publishConfig": { "access": "public" }, "scripts": { "build": "pnpm run build-cjs && pnpm run build-es6", "build-cjs": "tsc --module commonjs --outDir ./lib/cjs", "build-es6": "tsc --module es6 --outDir ./lib/es6", "lint": "tslint --project tsconfig.lint.json --config ../tslint.json", "docs": "cd .. && node .scripts/make-api-docs.js html", "changelog": "cd .. && node .scripts/update-changelogs.js html", "test-node": "mocha test/*.ts --require ts-node/register --exit", "test": "pnpm run test-node", "test-ci": "../.scripts/retry.sh pnpm test", "prepublishOnly": "pnpm run build && pnpm test" } }