1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
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"
}
}
|