-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
87 lines (87 loc) · 1.85 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"name": "6-mils",
"version": "2.1.0",
"description": "A JS library for sending, receiving, and parsing cXML messages.",
"main": "main.js",
"scripts": {
"cover:test": "nyc --silent npm run test:unit && nyc --no-clean npm run test:func",
"cover:report": "nyc report --reporter=text-lcov",
"coverage": "npm run cover:report | coveralls",
"lint": "standard",
"test:unit": "mocha \"./{,!(node_modules)/**/}*.spec.js\"",
"test:func": "mocha test/functional/harness.js",
"test": "npm run lint && npm run cover:test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/DPassarelli/6-mils.git"
},
"keywords": [
"cxml",
"xml",
"commerce"
],
"author": "David Passarelli <[email protected]>",
"license": "ISC",
"bugs": {
"url": "https://github.com/DPassarelli/6-mils/issues"
},
"homepage": "https://github.com/DPassarelli/6-mils#readme",
"engines": {
"node": ">=10"
},
"devDependencies": {
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"coveralls": "^3.0.11",
"mocha": "^7.1.1",
"nyc": "^15.0.0",
"standard": "^14.3.3",
"w3c-xml-validator": "^1.1.0"
},
"dependencies": {
"debug": "^4.1.1",
"fontoxpath": "^3.13.2",
"got": "^9.6.0",
"is-plain-obj": "^2.1.0",
"lodash.merge": "^4.6.2",
"luxon": "^1.24.1",
"nunjucks": "^3.2.1",
"slimdom-sax-parser": "^1.3.0",
"ulid": "^2.3.0"
},
"mocha": {
"reporter": "min",
"file": "test/setup.js",
"ui": "bdd"
},
"standard": {
"global": [
"expect"
]
},
"nyc": {
"check-coverage": true,
"exclude": [
"**/*.spec.js",
"test/"
],
"per-file": true,
"lines": [
85,
92
],
"statements": [
85,
92
],
"functions": [
85,
92
],
"branches": [
85,
92
]
}
}