forked from tastypackets/x12-parser
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.14 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
{
"scripts": {
"test": "yarn lint && mocha",
"docs": "jsdoc -c jsdoc.json",
"format": "prettier --write ./lib ./test",
"lint": "eslint ./lib --max-warnings 0"
},
"dependencies": {},
"name": "x12-parser",
"version": "1.0.2",
"description": "NodeJS X12 parser using streams",
"main": "index.js",
"repository": "https://github.com/tastypackets/x12-parser",
"author": "Ezekiel Keator <20361796+tastypackets@users.noreply.github.com>",
"license": "MIT",
"private": false,
"devDependencies": {
"jsdoc": "^3.6.7",
"mocha": "^6.2.3",
"tui-jsdoc-template": "^1.2.2"
},
"bugs": {
"url": "https://github.com/tastypackets/x12-parser/issues"
},
"homepage": "https://github.com/tastypackets/x12-parser",
"keywords": [
"X12",
"ANSI",
"EDI",
"parser",
"streams",
"835",
"837"
],
"prettier": {
"trailingComma": "es5",
"tabWidth": 2,
"semi": true,
"singleQuote": true
},
"eslintConfig": {
"extends": "eslint:recommended",
"parserOptions": {
"ecmaVersion": 2018
},
"env": {
"browser": false,
"node": true,
"es6": true
}
}
}