-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 875 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
36
37
{
"name": "promitator",
"version": "0.1.0",
"description": "Promise helper for delayed initialization",
"main": "index.js",
"scripts": {
"test": "node_modules/.bin/mocha --harmony --harmony_proxies ./test/**.test.js --recursive -R spec",
"benchmark": "node benchmark/index.js"
},
"keywords": [
"promise",
"promisify",
"require",
"initialize"
],
"engines": {
"node": "^4.0"
},
"author": "Anton Sidelnikov <[email protected]>",
"license": "MIT",
"dependencies": {
"es6-promisify": "^3.0.0",
"is-promise": "^2.1.0",
"harmony-reflect": "^1.4.2"
},
"devDependencies": {
"benchmark": "^1.0.0",
"bluebird": "^2.10.2",
"chai": "^3.3.0",
"chai-as-promised": "^5.1.0",
"harmonize": "^1.4.4",
"install": "^0.1.8",
"mocha": "^2.3.3",
"mongodb": "^2.0.45",
"npm": "^3.3.5"
}
}