-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
37 lines (37 loc) · 833 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": "aopromise",
"version": "0.4.0",
"description": "Node.js aspect oriented programming toolkit for Promise-based apps",
"main": "lib/aopromise.js",
"scripts": {
"test": "node_modules/mocha/bin/mocha"
},
"repository": {
"type": "git",
"url": "https://[email protected]/manokovacs/aopromise.git"
},
"keywords": [
"aop",
"promise",
"aspect",
"oriented",
"programming",
"node",
"nodejs"
],
"author": "Mano Kovacs <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/manokovacs/aopromise/issues"
},
"homepage": "https://github.com/manokovacs/aopromise",
"dependencies": {
"bluebird": "^2.9.30",
"extend": "^3.0.0"
},
"devDependencies": {
"mocha": "^2.2.5",
"should": "^7.0.1",
"sinon": "^1.15.4"
}
}