diff options
Diffstat (limited to 'node_modules/@calebboyd/semaphore/package.json')
-rw-r--r-- | node_modules/@calebboyd/semaphore/package.json | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/node_modules/@calebboyd/semaphore/package.json b/node_modules/@calebboyd/semaphore/package.json new file mode 100644 index 0000000..8f6b916 --- /dev/null +++ b/node_modules/@calebboyd/semaphore/package.json @@ -0,0 +1,26 @@ +{ + "name": "@calebboyd/semaphore", + "version": "1.3.1", + "description": "Simple promise based counting semaphore", + "main": "index.js", + "scripts": { + "test": "npm run clean && mocha", + "clean": "rimraf \"*.{js,d.ts}\"", + "prepublishOnly": "npm test && tsc --declaration" + }, + "files": [ + "*.js", + "*.d.ts" + ], + "author": "Caleb Boyd", + "license": "MIT", + "devDependencies": { + "@types/chai": "^4.1.3", + "@types/mocha": "^5.2.0", + "chai": "^4.1.2", + "mocha": "^5.1.1", + "rimraf": "^2.6.2", + "ts-node": "^6.0.3", + "typescript": "^2.8.3" + } +} |