wallet-core/node_modules/async/package.json

86 lines
2.0 KiB
JSON
Raw Normal View History

2016-10-10 03:43:44 +02:00
{
2016-11-03 01:33:53 +01:00
"name": "async",
"description": "Higher-order functions and common patterns for asynchronous code",
2016-11-13 21:53:45 +01:00
"main": "lib/async.js",
"files": [
"lib",
"dist/async.js",
"dist/async.min.js"
],
2016-11-03 01:33:53 +01:00
"author": "Caolan McMahon",
2016-11-13 21:53:45 +01:00
"version": "1.5.2",
"keywords": [
"async",
"callback",
"utility",
"module"
],
2016-11-03 01:33:53 +01:00
"repository": {
"type": "git",
"url": "https://github.com/caolan/async.git"
2016-10-10 03:43:44 +02:00
},
"bugs": {
"url": "https://github.com/caolan/async/issues"
},
2016-11-13 21:53:45 +01:00
"license": "MIT",
2016-10-10 03:43:44 +02:00
"devDependencies": {
2016-11-13 21:53:45 +01:00
"benchmark": "bestiejs/benchmark.js",
"bluebird": "^2.9.32",
2016-10-10 03:43:44 +02:00
"chai": "^3.1.0",
"coveralls": "^2.11.2",
"es6-promise": "^2.3.0",
2016-11-13 21:53:45 +01:00
"jscs": "^1.13.1",
"jshint": "~2.8.0",
"karma": "^0.13.2",
"karma-browserify": "^4.2.1",
"karma-firefox-launcher": "^0.1.6",
"karma-mocha": "^0.2.0",
"karma-mocha-reporter": "^1.0.2",
"lodash": "^3.9.0",
"mkdirp": "~0.5.1",
"mocha": "^2.2.5",
2016-10-10 03:43:44 +02:00
"native-promise-only": "^0.8.0-a",
2016-11-13 21:53:45 +01:00
"nodeunit": ">0.0.0",
"nyc": "^2.1.0",
2016-10-10 03:43:44 +02:00
"rsvp": "^3.0.18",
"semver": "^4.3.6",
2016-11-13 21:53:45 +01:00
"uglify-js": "~2.4.0",
"xyz": "^0.5.0",
2016-10-10 03:43:44 +02:00
"yargs": "~3.9.1"
},
2016-11-13 21:53:45 +01:00
"jam": {
"main": "lib/async.js",
"include": [
"lib/async.js",
"README.md",
"LICENSE"
],
"categories": [
"Utilities"
]
},
2016-10-10 03:43:44 +02:00
"scripts": {
2016-11-13 21:53:45 +01:00
"mocha-node-test": "mocha mocha_test/",
2016-10-10 03:43:44 +02:00
"mocha-browser-test": "karma start",
"mocha-test": "npm run mocha-node-test && npm run mocha-browser-test",
2016-11-13 21:53:45 +01:00
"nodeunit-test": "nodeunit test/test-async.js",
"test": "npm run-script lint && npm run nodeunit-test && npm run mocha-test",
"lint": "jshint lib/*.js test/*.js perf/*.js && jscs lib/*.js test/*.js perf/*.js",
"coverage": "nyc npm test && nyc report",
"coveralls": "nyc npm test && nyc report --reporter=text-lcov | coveralls"
2016-11-03 01:33:53 +01:00
},
2016-11-13 21:53:45 +01:00
"spm": {
"main": "lib/async.js"
2016-10-10 03:43:44 +02:00
},
2016-11-13 21:53:45 +01:00
"volo": {
"main": "lib/async.js",
"ignore": [
"**/.*",
"node_modules",
"bower_components",
"test",
"tests"
2016-11-03 01:33:53 +01:00
]
}
2016-11-13 21:53:45 +01:00
}