-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
50 lines (50 loc) · 1.57 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
47
48
49
50
{
"name": "terror",
"version": "1.4.0",
"description": "Base error class which will help you grep logs more effectively",
"main": "./lib/terror.js",
"files": [
"lib"
],
"scripts": {
"test": "eslint lib test && jscs lib test && mocha test --check-leaks",
"coverage": "mkdir -p coverage && unit-coverage -s lib/*.js -t test/*.js -r html -o ./coverage/index.html run"
},
"repository": {
"type": "git",
"url": "git://github.com/nodules/terror.git"
},
"keywords": [
"error"
],
"author": "Ruslan Kerimov <[email protected]> (https://github.com/ruslankerimov)",
"maintainers": [
"Phillip Kovalev <[email protected]> (https://github.com/kaero)"
],
"contributors": [
"Phillip Kovalev <[email protected]> (https://github.com/kaero)",
"Dmitriy Vinokurov <[email protected]> (https://github.com/vindm)",
"Igor Shevchenko (https://github.com/cy6erskunk)",
"Nikita Ezhkov (https://github.com/nikita-ezhkov)",
"Konstantin Chernenko (https://github.com/zoobestik)",
"Vladislav Kurkin <[email protected]> (https://github.com/B-Vladi)",
"Vladimir Varankin <[email protected]> (https://github.com/narqo)"
],
"licenses": [
{
"type": "MIT",
"url": "http://github.com/nodules/terror/raw/master/LICENSE"
}
],
"readmeFilename": "README.md",
"devDependencies": {
"chai": "^2.2.0",
"eslint": "^1.10.3",
"eslint-config-nodules": "^0.1.1",
"jscs": "^2.6.0",
"jscs-preset-nodules": "^0.1.0",
"mocha": "^2.4.5",
"sinon": "^1.14.1",
"unit-coverage": "^3.4.0"
}
}