@bett3r-dev/flyd
Version:
The less is more, modular, functional reactive programming library
82 lines (81 loc) • 2.21 kB
JSON
{
"name": "@bett3r-dev/flyd",
"version": "0.3.5",
"description": "The less is more, modular, functional reactive programming library",
"main": "lib/index.js",
"types": "index.d.ts",
"unpkg": "flyd.min.js",
"files": [
"lib",
"index.d.ts",
"flyd.min.js",
"module"
],
"directories": {
"example": "examples",
"test": "test"
},
"devDependencies": {
"benchmark": "^1.0.0",
"bluebird": "^2.9.13",
"browserify": "^17.0.0",
"coveralls": "^3.1.0",
"eslint": "~6.8.0",
"istanbul": "^0.4.5",
"mocha": "^8.3.1",
"mocha-lcov-reporter": "0.0.2",
"np": "^2.19.0",
"ramda": "^0.25.0",
"rollup": "^0.56.2",
"rollup-plugin-commonjs": "^8.3.0",
"rollup-plugin-node-resolve": "^3.0.3",
"rollup-plugin-replace": "^2.0.0",
"rollup-plugin-uglify": "^3.0.0",
"sinon": "~11.1.1",
"transducers.js": "0.3.x",
"whatwg-fetch": "^3.0.0"
},
"scripts": {
"test-lib": "mocha",
"test": "eslint --fix lib/ test/ module/ && mocha test/*.js module/**/test/*.js",
"docs": "documentation -f md lib/index.js > API.md",
"perf": "./perf/run-benchmarks",
"coverage": "istanbul cover _mocha -- -R spec",
"post-to-coveralls-io": "istanbul cover _mocha --report lcovonly -- -R spec && cat ./coverage/lcov.info | coveralls && rm -rf ./coverage",
"build": "rollup -c rollup.config.dev.js && rollup -c rollup.config.js && node ./build-examples.js",
"release": "np"
},
"repository": {
"type": "git",
"url": "https://github.com/bett3r-dev/flyd.git"
},
"keywords": [
"functional",
"reactive",
"modular",
"library"
],
"author": "Simon Friis Vindum",
"license": "MIT",
"bugs": {
"url": "https://github.com/bett3r-dev/flyd/issues"
},
"homepage": "https://github.com/paldepind/flyd",
"testling": {
"harness": "mocha",
"files": "test/*.js",
"browsers": [
"ie/8..latest",
"firefox/16..latest",
"firefox/nightly",
"chrome/22..latest",
"chrome/canary",
"opera/12..latest",
"opera/next",
"safari/5.1..latest",
"ipad/6.0..latest",
"iphone/6.0..latest",
"android-browser/4.2..latest"
]
}
}