forked from Vincit/tarn.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.26 KB
/
package.json
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
{
"name": "tarn",
"version": "1.1.4",
"description": "Simple and robust resource pool for node.js",
"main": "lib/tarn.js",
"types": "lib/tarn.d.ts",
"license": "MIT",
"scripts": {
"test": "mocha --slow 10 --timeout 5000 --reporter spec tests.js",
"test-bail": "mocha --slow 10 --timeout 5000 --reporter spec --bail tests.js",
"build": "tsc",
"clean": "rm -rf lib",
"prepublishOnly": "tsc",
"format": "prettier **/*.{js,ts} --write"
},
"author": {
"name": "Sami Koskimäki",
"email": "[email protected]",
"url": "https://github.com/koskimas"
},
"repository": {
"type": "git",
"url": "git://github.com/vincit/tarn.js.git"
},
"engines": {
"node": ">=4.0.0"
},
"keywords": [
"pool",
"pooling",
"throttle"
],
"files": [
"README.md",
"LICENSE",
"lib/*"
],
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,ts}": [
"prettier --write",
"git add"
]
},
"devDependencies": {
"@types/node": "^10.5.2",
"bluebird": "^3.5.3",
"expect.js": "^0.3.1",
"husky": "^1.3.1",
"lint-staged": "^8.0.4",
"mocha": "^5.2.0",
"prettier": "^1.13.7",
"typescript": "3.2.4"
},
"dependencies": {}
}