forked from vkarpov15/tao
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.03 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
{
"name": "tao-js",
"description": "Aspect-oriented middleware for async/await and JS",
"version": "0.4.0",
"author": "Valeri Karpov <[email protected]>",
"dependencies": {
"co": "4.6.0",
"debug": "4.1.0",
"lodash.get": "4.4.2",
"ramda": "0.25.0"
},
"peerDependencies": {
"bson": "*"
},
"devDependencies": {
"acquit": "1.x",
"acquit-ignore": "0.1.x",
"acquit-markdown": "0.1.x",
"archetype": "0.9.x",
"bson": "*",
"dox": "0.9.0",
"express": "4.16.2",
"mocha": "4.1.0",
"nyc": "11.6.0",
"sinon": "4.4.2",
"superagent": "3.8.2"
},
"keywords": [
"aspect",
"tao"
],
"engines": {
"node": ">= 6.0.0"
},
"license": "Apache 2.0",
"main": "./index.js",
"repository": {
"type": "git",
"url": "git://github.com/vkarpov15/tao.git"
},
"scripts": {
"coverage": "nyc --reporter=lcov npm test",
"docs": "acquit-markdown -i -r acquit-ignore -p './test/example.test.js' -h './HEADER.md' > README.md",
"test": "mocha test/*.test.js"
}
}