43 lines
982 B
JSON
43 lines
982 B
JSON
{
|
|
"name": "run-parallel",
|
|
"description": "Run an array of functions in parallel",
|
|
"version": "1.1.9",
|
|
"author": {
|
|
"name": "Feross Aboukhadijeh",
|
|
"email": "feross@feross.org",
|
|
"url": "http://feross.org/"
|
|
},
|
|
"bugs": {
|
|
"url": "https://github.com/feross/run-parallel/issues"
|
|
},
|
|
"dependencies": {},
|
|
"devDependencies": {
|
|
"airtap": "0.0.4",
|
|
"standard": "*",
|
|
"tape": "^4.0.0"
|
|
},
|
|
"homepage": "https://github.com/feross/run-parallel",
|
|
"keywords": [
|
|
"parallel",
|
|
"async",
|
|
"function",
|
|
"callback",
|
|
"asynchronous",
|
|
"run",
|
|
"array",
|
|
"run parallel"
|
|
],
|
|
"license": "MIT",
|
|
"main": "index.js",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git://github.com/feross/run-parallel.git"
|
|
},
|
|
"scripts": {
|
|
"test": "standard && npm run test-node && npm run test-browser",
|
|
"test-browser": "airtap -- test/*.js",
|
|
"test-browser-local": "airtap --local -- test/*.js",
|
|
"test-node": "tape test/*.js"
|
|
}
|
|
}
|