-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
73 lines (73 loc) · 1.75 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
{
"name": "ms-vault-mock",
"version": "0.1.1",
"license": "MIT",
"author": "Paul-Emile Veuve",
"contributors": [
{
"email": "[email protected]",
"name": "Franck Mahieu"
}
],
"description": "Azure Key Vault mock server",
"keywords": [
"azure",
"keyvault",
"mock"
],
"homepage": "https://github.com/peveuve/ms-vault-mock#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/peveuve/ms-vault-mock.git"
},
"bugs": {
"url": "https://github.com/peveuve/ms-vault-mock/issues"
},
"bin": "./ms-vault-mock.js",
"dependencies": {
"express": "^4.17.1",
"express-validation": "^3.0.8",
"joi": "^17.4.0",
"lodash.clonedeep": "^4.5.0",
"lodash.merge": "^4.6.2",
"proxyquire": "^2.1.3",
"pug": "^3.0.2",
"uuid": "^8.3.2"
},
"devDependencies": {
"chai": "^4.3.4",
"dirty-chai": "^2.0.1",
"eslint": "^7.24.0",
"eslint-config-standard": "^16.0.2",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-mocha": "^8.1.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.3.1",
"mocha": "^8.3.2",
"nyc": "^15.1.0",
"sinon": "^10.0.0",
"sinon-chai": "^3.6.0"
},
"scripts": {
"test": "./node_modules/.bin/mocha \"test/**/*.spec.js\"",
"test:cov": "nyc npm test",
"lint": "./node_modules/.bin/eslint \"**/*.js\"",
"start": "node ms-vault-mock.js --certificate ~/vault-server.crt --private_key ~/vault-server.key --vault_dir ~"
},
"nyc": {
"all": true,
"check-coverage": true,
"branches": 100,
"lines": 100,
"functions": 100,
"statements": 100,
"reporter": [
"lcov",
"text"
],
"exclude": [
"**/*.spec.js",
"coverage/**/*.js"
]
}
}