forked from zemuldo/iso_8583
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.37 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
51
52
53
54
55
56
57
58
59
{
"name": "iso_8583",
"version": "2.6.5",
"description": "A javascript library for messaging in iso 8583 messaging format.",
"main": "lib/8583.js",
"scripts": {
"lint": "eslint lib test --fix",
"pretest": "eslint lib test --fix",
"docs": "jsdoc -c js_docs.conf.json README.md",
"test": "nyc --reporter=html --reporter=lcov ava --verbose",
"test.watch": " npx ava --verbose --watch"
},
"ava": {
"babel": true,
"files": [
"test/*.js"
],
"source": [
"lib/**/*.{js}"
],
"concurrency": 5,
"failFast": true,
"failWithoutAssertions": false,
"powerAssert": false
},
"repository": {
"type": "git",
"url": "git+https://github.com/zemuldo/iso_8583.git"
},
"keywords": [
"iso",
"iso8583",
"iso_8583",
"card transaction",
"8583"
],
"author": "Danstan Otieno Onyango",
"license": "ISC",
"bugs": {
"url": "https://github.com/zemuldo/iso_8583/issues"
},
"homepage": "https://github.com/zemuldo/iso_8583/wiki",
"dependencies": {
"date-fns": "^2.9.0",
"jxon": "^2.0.0-beta.5"
},
"devDependencies": {
"@ava/babel": "^1.0.1",
"ava": "^3.1.0",
"babel-eslint": "^10.0.3",
"eslint": "^5.16.0",
"eslint-plugin-import": "^2.20.0",
"gulp": "^4.0.2",
"gulp-shell": "^0.8.0",
"jsdoc": "^3.6.3",
"nyc": "^15.0.1",
"toast-jsdoc": "^1.0.2"
}
}