-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
71 lines (71 loc) · 1.71 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
{
"name": "@digitregroup/universign-client",
"version": "0.0.3",
"description": "NodeJS Universign client",
"author": "DigitRE Group",
"keywords": [
"nodejs",
"npm",
"universign",
"sdk"
],
"license": "MIT",
"engines": {
"node": ">=8.10"
},
"main": "index.js",
"scripts": {
"lint": "eslint --fix .",
"lint:ci": "eslint . --format junit --output-file ./reports/eslint.xml",
"test": "nyc mocha ./test/*.js",
"test:ci": "nyc mocha ./test/*.js --reporter=mocha-junit-reporter --reporter-options mochaFile=./reports/junit.xml",
"report-coverage": "nyc report --reporter=text-lcov | coveralls",
"nsp": "nsp check",
"check-version": "git-npm-version-checker -v",
"version": "auto-changelog -p && git add CHANGELOG.md"
},
"repository": {
"type": "git",
"url": "https://github.com/digitregroup/universign-client"
},
"devDependencies": {
"@digitregroup/eslint-config": "^1.7.0",
"auto-changelog": "^1.4.6",
"chai": "^4.1.2",
"coveralls": "^3.0.0",
"eslint": "^4.16.0",
"git-npm-version-checker": "^1.1.0",
"mocha": "^5.0.5",
"mocha-junit-reporter": "^1.17.0",
"mock-require": "^3.0.2",
"nsp": "^3.2.1",
"nyc": "^14.1.1"
},
"dependencies": {
"@hapi/joi": "^15.1.1",
"xmlrpc": "^1.3.2"
},
"nyc": {
"check-coverage": true,
"per-file": true,
"lines": 0,
"statements": 0,
"functions": 0,
"branches": 0,
"include": [
"src/*.js"
],
"ignore-class-method": "methodToIgnore",
"reporter": [
"html",
"text"
],
"reporter-options": {
"mochaFile": "./reports/junit.xml"
},
"extension": [
".js"
],
"report-dir": "./reports"
}
}