UNPKG

2.73 kBJSONView Raw
1{
2 "name": "@cycle/dom",
3 "version": "22.8.0",
4 "description": "The standard DOM Driver for Cycle.js, based on Snabbdom",
5 "license": "MIT",
6 "homepage": "https://cycle.js.org",
7 "bugs": "https://github.com/cyclejs/cyclejs/issues",
8 "repository": "https://github.com/cyclejs/cyclejs/tree/master/dom",
9 "contributors": [
10 {
11 "name": "Andre Staltz",
12 "email": "andre@staltz.com"
13 },
14 {
15 "name": "Tylor Steinberger",
16 "email": "tlsteinberger167@gmail.com"
17 },
18 {
19 "name": "Frederik Krautwald",
20 "email": "fkrautwald@gmail.com"
21 }
22 ],
23 "keywords": [
24 "reactive",
25 "framework",
26 "rxjs",
27 "rx",
28 "unidirectional",
29 "mvi",
30 "virtual-dom"
31 ],
32 "main": "lib/cjs/index.js",
33 "module": "lib/es6/index.js",
34 "typings": "lib/cjs/index.d.ts",
35 "types": "lib/cjs/index.d.ts",
36 "scripts": {
37 "build": "pnpm run build-cjs && pnpm run build-es6",
38 "build-cjs": "tsc --module commonjs --outDir ./lib/cjs",
39 "build-es6": "tsc --module es6 --outDir ./lib/es6",
40 "lint": "tslint --project tsconfig.lint.json --config ../tslint.json",
41 "docs": "cd .. && node .scripts/make-api-docs.js dom",
42 "changelog": "cd .. && node .scripts/update-changelogs.js dom",
43 "test-node": "mocha test/node/*.ts --require ts-node/register --exit",
44 "test-browser": "karma start",
45 "test": "pnpm run test-node && pnpm run test-browser",
46 "test-ci": "CI=true ../.scripts/retry.sh pnpm test",
47 "test-watch": "WATCH=true pnpm test",
48 "test-live": "LIVE=true karma start --watch",
49 "prepublishOnly": "pnpm run build && pnpm test"
50 },
51 "dependencies": {
52 "@cycle/run": "^5.2.0",
53 "snabbdom": "^0.7.4",
54 "snabbdom-selector": "^4.2.0",
55 "xstream": "*"
56 },
57 "devDependencies": {
58 "@cycle/isolate": "^5.0.0",
59 "@cycle/rxjs-run": "^10.2.0",
60 "@types/mocha": "~5.2.7",
61 "@types/node": "^10.12.11",
62 "@types/sinon": "^5.0.7",
63 "deepmerge": "~4.0.0",
64 "es6-map": "^0.1.5",
65 "es6-set": "^0.1.5",
66 "karma": "~4.2.0",
67 "karma-browserstack-launcher": "~1.5.1",
68 "karma-chrome-launcher": "~3.0.0",
69 "karma-firefox-launcher": "~1.1.0",
70 "karma-mocha": "~1.3.0",
71 "karma-typescript": "~4.1.1",
72 "mocha": "~6.2.0",
73 "most": "^1.7.3",
74 "mutation-observer": "1.0.3",
75 "rxjs": "^6.3.3",
76 "simulant": "^0.2.2",
77 "sinon": "^7.1.1",
78 "snabbdom-pragma": "^2.8.0",
79 "symbol-observable": "^1.2.0",
80 "ts-node": "^7.0.1",
81 "tslint": "^5.11.0",
82 "typescript": "=3.2.4",
83 "xstream": "11.x"
84 },
85 "engines": {
86 "node": ">=0.10.0"
87 },
88 "funding": {
89 "type": "opencollective",
90 "url": "https://opencollective.com/cyclejs"
91 },
92 "publishConfig": {
93 "access": "public"
94 }
95}