chaining
Version:
Yet Another Chaining Library
49 lines • 1 kB
JSON
{
"name": "chaining",
"version": "0.3.2",
"description": "Yet Another Chaining Library",
"main": "src/chain.js",
"scripts": {
"test": "jshint src test && istanbul cover test/runner.js --report lcovonly"
},
"keywords": [
"promise",
"async",
"chain",
"defered"
],
"repository": {
"type": "git",
"url": "https://github.com/j-san/chaining.js.git"
},
"author": "Jonathan Sanchez",
"license": "MIT",
"devDependencies": {
"chai": "^1.9.1",
"codecov.io": "0.0.3",
"istanbul": "^0.3.2",
"jshint": "^2.5.6",
"mocha": "^1.21.4",
"q": "^1.1.1",
"when": "^3.4.6"
},
"jshintConfig": {
"curly": true,
"eqnull": true,
"eqeqeq": true,
"undef": true,
"unused": true,
"node": true,
"devel": true,
"esnext": true,
"maxcomplexity": 5,
"globals": {
"describe": false,
"it": false,
"before": false,
"beforeEach": false,
"after": false,
"afterEach": false
}
}
}