forked from shoneslab/nodejs-winrm
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
52 lines (52 loc) · 1.16 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
{
"name": "nodejs-winrm",
"version": "1.1.3",
"description": "Make WinRM service calls from NodeJS",
"main": "index.js",
"scripts": {
"test": "node ./test/test.js",
"outdated": "npm outdated --json || true",
"lint": "npx eslint .",
"jest:test": "jest",
"jest:coverage": "npx jest --coverage",
"jest:watch": "jest --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/shoneslab/nodejs-winrm.git"
},
"keywords": [
"winrm"
],
"author": "Shone Jacob",
"license": "MIT",
"bugs": {
"url": "https://github.com/shoneslab/nodejs-winrm/issues"
},
"homepage": "https://github.com/shoneslab/nodejs-winrm#readme",
"jest": {
"automock": false,
"coveragePathIgnorePatterns": [],
"verbose": true,
"coverageReporters": [
"html",
"lcov",
"json",
"text",
"text-summary"
],
"testMatch": [
"<rootDir>/test/*.unit.spec.js",
"<rootDir>/__tests__/*.unit.spec.js"
]
},
"dependencies": {
"uuid": "^3.3.2",
"js2xmlparser": "^3.0.0",
"xml2js": "^0.5.0"
},
"devDependencies": {
"eslint": "^5.10.0",
"jest": "^23.6.0"
}
}