-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 933 Bytes
/
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
{
"name": "ts-promise-benchmark",
"version": "1.1.0",
"description": "Benchmark for TS-Promise against other Promise libraries",
"main": "benchmark.js",
"scripts": {
"prepublish": "tsc",
"test": "node benchmark && echo && NODE_ENV=development node benchmark"
},
"author": "Martin Poelstra <martin@beryllium.net>",
"repository": {
"type": "git",
"url": "https://github.com/poelstra/ts-promise-benchmark"
},
"license": "MIT",
"dependencies": {
"benchmark": "^2.1.4",
"bluebird": "^3.5.1",
"es6-promise": "^4.2.4",
"microtime": "^2.1.7",
"q": "^1.5.1",
"sinon": "^4.4.1",
"source-map-support": "^0.5.3",
"ts-promise": "^1.0.0"
},
"devDependencies": {
"@types/benchmark": "^1.0.31",
"@types/bluebird": "^3.5.20",
"@types/node": "^9.4.6",
"@types/q": "^1.0.7",
"@types/sinon": "^4.1.3",
"tslint": "^5.9.1",
"typescript": "^2.7.2"
}
}