-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
42 lines (42 loc) · 874 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
38
39
40
41
42
{
"name": "atm-trace",
"version": "0.3.2",
"description": "ATM Trace Service - a library to display binary data",
"main": "lib/trace.js",
"scripts": {
"test": "eslint tests/** lib/** && ava"
},
"repository": "https://github.com/timgabets/atm-trace",
"keywords": [
"Logging",
"Trace"
],
"ava": {
"files": [
"tests/*.js"
],
"source": [
"lib/**/*.{js}"
],
"concurrency": 5,
"failFast": true,
"failWithoutAssertions": false,
"powerAssert": false
},
"author": {
"name": "Tim Gabets",
"email": "[email protected]",
"url": "http://gabets.ru/"
},
"license": "LGPL-2.1",
"devDependencies": {
"eslint": "^4.12.0",
"ava": "^0.24.0",
"jsdom": "^11.5.1",
"eslint-plugin-import": "^2.8.0"
},
"dependencies": {
"atm-logging": "^0.1.4",
"atm-timestamp": "^1.1.1"
}
}