@cycle/dom
Version:
The standard DOM Driver for Cycle.js, based on Snabbdom
96 lines (95 loc) • 2.73 kB
JSON
{
"name": "@cycle/dom",
"version": "23.1.0",
"description": "The standard DOM Driver for Cycle.js, based on Snabbdom",
"license": "MIT",
"homepage": "https://cycle.js.org",
"bugs": "https://github.com/cyclejs/cyclejs/issues",
"repository": "https://github.com/cyclejs/cyclejs/tree/master/dom",
"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",
"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 dom",
"changelog": "cd .. && node .scripts/update-changelogs.js dom",
"test-node": "mocha test/node/*.ts --require ts-node/register --exit",
"test-browser": "karma start",
"test": "pnpm run test-node && pnpm run test-browser",
"test-ci": "CI=true ../.scripts/retry.sh pnpm test",
"test-watch": "WATCH=true pnpm test",
"test-live": "LIVE=true karma start --watch",
"xprepublishOnly": "pnpm run build && pnpm test"
},
"dependencies": {
"@cycle/run": "^5.2.0",
"snabbdom": "^3.4.0",
"snabbdom-selector": "^5.0.0",
"xstream": "*"
},
"devDependencies": {
"@cycle/isolate": "^5.0.0",
"@cycle/rxjs-run": "^10.2.0",
"@types/mocha": "~5.2.7",
"@types/node": "^10.12.11",
"@types/sinon": "^5.0.7",
"deepmerge": "~4.0.0",
"es6-map": "^0.1.5",
"es6-set": "^0.1.5",
"karma": "~4.2.0",
"karma-browserstack-launcher": "~1.5.1",
"karma-chrome-launcher": "~3.0.0",
"karma-firefox-launcher": "~1.1.0",
"karma-mocha": "~1.3.0",
"karma-typescript": "~4.1.1",
"mocha": "~6.2.0",
"most": "^1.7.3",
"mutation-observer": "1.0.3",
"rxjs": "^6.3.3",
"simulant": "^0.2.2",
"sinon": "^7.1.1",
"snabbdom-pragma": "^2.8.0",
"symbol-observable": "^1.2.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"
}
}