forked from LeenkxTeam/LNXSDK
107 lines
3.0 KiB
JSON
107 lines
3.0 KiB
JSON
{
|
|
"_from": "promise-parallel-throttle",
|
|
"_id": "promise-parallel-throttle@3.1.0",
|
|
"_inBundle": false,
|
|
"_integrity": "sha512-18gafVK+kfabwYl/RolyU7cp62EXtv4RhzRrSqdnlyp48tR8BZUK7fKEeG4nfERJcpkSyD3P50aW/qbZOsUmtw==",
|
|
"_location": "/promise-parallel-throttle",
|
|
"_phantomChildren": {},
|
|
"_requested": {
|
|
"type": "tag",
|
|
"registry": true,
|
|
"raw": "promise-parallel-throttle",
|
|
"name": "promise-parallel-throttle",
|
|
"escapedName": "promise-parallel-throttle",
|
|
"rawSpec": "",
|
|
"saveSpec": null,
|
|
"fetchSpec": "latest"
|
|
},
|
|
"_requiredBy": [
|
|
"#DEV:/",
|
|
"#USER"
|
|
],
|
|
"_resolved": "https://registry.npmjs.org/promise-parallel-throttle/-/promise-parallel-throttle-3.1.0.tgz",
|
|
"_shasum": "0fd4179e944cf94430582e632efde13b8b7bb43d",
|
|
"_spec": "promise-parallel-throttle",
|
|
"_where": "C:\\Users\\dklein\\cse\\duolito-client\\Kha\\Tools\\khamake",
|
|
"author": {
|
|
"name": "Dirk-Jan Wassink",
|
|
"email": "dirk.jan.wassink@gmail.com",
|
|
"url": "http://dirkjanwassink.nl"
|
|
},
|
|
"bugs": {
|
|
"url": "https://github.com/DJWassink/Promise-parallel-throttle/issues"
|
|
},
|
|
"bundleDependencies": false,
|
|
"deprecated": false,
|
|
"description": "Run promises in parallel, but throttled",
|
|
"devDependencies": {
|
|
"@types/jest": "^19.2.2",
|
|
"@types/node": "^6.0.46",
|
|
"husky": "^0.14.3",
|
|
"jest": "^19.0.2",
|
|
"lint-staged": "^4.2.3",
|
|
"prettier": "^1.7.2",
|
|
"ts-jest": "^19.0.14",
|
|
"tslint": "^5.1.0",
|
|
"tslint-config-prettier": "^1.5.0",
|
|
"tslint-eslint-rules": "^4.1.1",
|
|
"typescript": "^2.6.1"
|
|
},
|
|
"homepage": "https://github.com/DJWassink/Promise-parallel-throttle#readme",
|
|
"jest": {
|
|
"transform": {
|
|
".(ts|tsx)": "<rootDir>/node_modules/ts-jest/preprocessor.js"
|
|
},
|
|
"testResultsProcessor": "<rootDir>/node_modules/ts-jest/coverageprocessor.js",
|
|
"testRegex": "(/tests/.*|\\.(test|spec))\\.(ts|tsx|js)$",
|
|
"moduleFileExtensions": [
|
|
"ts",
|
|
"tsx",
|
|
"js"
|
|
]
|
|
},
|
|
"keywords": [
|
|
"promise",
|
|
"async",
|
|
"parallel",
|
|
"throttle",
|
|
"promise.all()",
|
|
"sync",
|
|
"synchronously"
|
|
],
|
|
"license": "MIT",
|
|
"lint-staged": {
|
|
"*.{ts,js}": [
|
|
"prettier --write",
|
|
"tslint -c ./tslint.json",
|
|
"git add"
|
|
]
|
|
},
|
|
"main": "build/throttle.js",
|
|
"name": "promise-parallel-throttle",
|
|
"prettier": {
|
|
"printWidth": 120,
|
|
"tabWidth": 4,
|
|
"singleQuote": true,
|
|
"jsxBracketSameLine": true,
|
|
"bracketSpacing": true
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/DJWassink/Promise-parallel-throttle.git"
|
|
},
|
|
"scripts": {
|
|
"build": "yarn lint && rm -rf ./build && tsc && npm run declarations",
|
|
"declarations": "tsc --declaration",
|
|
"lint": "tslint -p ./tsconfig.json",
|
|
"lint:fix": "tslint -p ./tsconfig.json --fix",
|
|
"precommit": "lint-staged",
|
|
"prepublish": "npm run build",
|
|
"prettier": "prettier --write \"src/**/*.ts*\"",
|
|
"test": "yarn lint && jest --coverage --no-cache",
|
|
"test:watch": "jest --watch"
|
|
},
|
|
"types": "./build/throttle.d.ts",
|
|
"version": "3.1.0"
|
|
}
|