forked from schaechinger/internetmarke
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.34 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
{
"name": "internetmarke",
"version": "0.2.1",
"description": "A node wrapper for the Internetmarke web service of the Deutsche Post.",
"keywords": [
"internetmarke",
"stamp",
"post",
"letter",
"1c4a",
"deutsche-post"
],
"main": "index.js",
"repository": "https://github.com/schaechinger/internetmarke.git",
"author": "Manuel Schächinger <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/schaechinger/internetmarke/issues"
},
"scripts": {
"test": "NODE_ENV=test ./node_modules/.bin/_mocha $(find test -name '*.test.js')",
"cover": "./node_modules/.bin/istanbul cover ./node_modules/mocha/bin/_mocha $(find test -name '*.test.js') --report lcovonly -- -R spec",
"coveralls": "cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage"
},
"directories": {
"lib": "./lib",
"test": "./test"
},
"engines": {
"node": ">=6.0.0"
},
"dependencies": {
"md5": "^2.2.1",
"moment": "^2.20.1",
"moment-timezone": "^0.5.14",
"pino": "^4.11.0",
"soap": "^0.23.0"
},
"devDependencies": {
"coveralls": "^3.0.0",
"istanbul": "^0.4.5",
"mocha": "^5.0.1",
"mocha-lcov-reporter": "^1.3.0",
"should": "^13.2.1",
"sinon": "^4.2.2"
},
"optionalDependencies": {
"jsdoc": "^3.5.5"
}
}