fluid-chains
Version:
A simple way to organize asynchronous Javascript functions.
57 lines • 1.62 kB
JSON
{
"name": "fluid-chains",
"version": "0.5.10",
"description": "A simple way to organize asynchronous Javascript functions.",
"main": "dist/index.js",
"scripts": {
"babel-node": "node_modules/.bin/babel-node",
"babel": "node_modules/.bin/babel",
"dev": "nodemon --exec babel-node src/index.js",
"prestart": "babel src --out-dir dist",
"start": "node dist/index.js",
"compile": "babel src --out-dir dist",
"coveralls": "cat ./coverage/lcov.info | coveralls",
"test": "npm run compile && mocha --compilers js:babel-core/register"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rickzx98/fluid-chains.git"
},
"keywords": [
"fluid-chains",
"chain",
"chaining",
"asynchronous",
"organize",
"functional",
"jerico",
"great",
"design",
"and",
"systems"
],
"author": "Jerico de Guzman",
"license": "ISC",
"bugs": {
"url": "https://github.com/rickzx98/fluid-chains/issues"
},
"homepage": "https://github.com/rickzx98/fluid-chains#readme",
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-plugin-transform-decorators": "^6.24.1",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-3": "^6.24.1",
"chai": "^3.5.0",
"coveralls": "^2.13.1",
"expect": "^1.20.2",
"isparta": "^4.0.0",
"mocha": "^3.4.1",
"sinon": "^2.2.0"
},
"dependencies": {
"babel-polyfill": "^6.23.0",
"lodash": "^4.17.4",
"object-sizeof": "^1.2.0"
}
}