forked from tdecaluwe/node-edifact
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 681 Bytes
/
package.json
File metadata and controls
28 lines (28 loc) · 681 Bytes
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
{
"name": "edifact",
"version": "1.2.8",
"description": "JavaScript parser for UN/EDIFACT documents.",
"keywords": ["edifact", "edi", "eancom"],
"main": "index.js",
"engines": {
"node": ">=0.12"
},
"repository": {
"type": "git",
"url": "https://github.com/tdecaluwe/node-edifact.git"
},
"license": "Apache-2.0",
"author": {
"name": "Tom De Caluwé",
"email": "decaluwe.t@gmail.com"
},
"devDependencies": {
"jasmine": "^2.4",
"istanbul": "^0.4"
},
"scripts": {
"test": "jasmine",
"coverage": "istanbul cover -i \"[^ies]*.js\" --include-all-sources jasmine"
},
"tonicExampleFilename": "examples/definitions.js"
}