-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.1 KB
/
Copy pathpackage.json
File metadata and controls
49 lines (49 loc) · 1.1 KB
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
{
"name": "seneca-extended",
"version": "1.3.6",
"description": "Extend seneca library with additional features",
"engines": {
"node": ">=6.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/afoninsky/seneca-extended.git"
},
"bugs": {
"url": "https://github.com/afoninsky/seneca-extended/issues"
},
"homepage": "https://github.com/afoninsky/seneca-extended#readme",
"main": "src/index",
"scripts": {
"test": "eslint src && nyc ava && nyc check-coverage --lines 90 --functions 80 --branches 60",
"coverage": "nyc report --reporter=html && open coverage/index.html"
},
"author": "Andrey 'vkfont' Afoninsky",
"license": "ISC",
"devDependencies": {
"ava": "^0.16.0",
"coveralls": "^2.11.14",
"eslint": "^3.8.0",
"nyc": "^8.3.1"
},
"dependencies": {
"bluebird": "^3.4.1",
"bunyan": "^1.8.1",
"lodash": "^4.16.4",
"seneca": "^3.2.1"
},
"ava": {
"verbose": true,
"source": [
"units/*js"
],
"require": [
"./test/_preload.js"
]
},
"nyc": {
"include": [
"src/*.js"
]
}
}