-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.57 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.57 KB
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
{
"name": "simple-ldap-server",
"version": "0.5.6-beta",
"description": "simple ldap/ldaps server for test environments",
"main": "lib/index.js",
"scripts": {
"pretest": "tsc",
"test": "jest test/unit/**/*.spec.js --coverage --runInBand --ci --silent=true",
"test:component": "tsc && jest --testPathPattern=test/component --coverage --ci --passWithNoTests",
"test:unit": "tsc && jest --testPathPattern=test/unit --coverage --ci",
"build": "tsc",
"prestart": "npm run build",
"start": "node lib/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Upekshe/simple-ldap-server.git"
},
"keywords": [
"ldap",
"ldaps",
"test",
"server"
],
"author": "upekshejay",
"license": "MIT",
"devDependencies": {
"@types/config": "0.0.36",
"@types/jest": "^26.0.24",
"@types/ldapjs": "^1.0.11",
"@types/node": "12.12.20",
"jest": "^27.2.4",
"jest-sonar-reporter": "^2.0.0",
"sonarqube-scanner": "^2.8.1",
"ts-node": "8.5.4",
"typescript": "3.8.3"
},
"dependencies": {
"config": "^3.3.6",
"ldapjs": "^2.3.1",
"log4js": "^6.4.0",
"nopt": "^5.0.0"
},
"bugs": {
"url": "https://github.com/Upekshe/simple-ldap-server/issues"
},
"jest": {
"testEnvironment": "node",
"coveragePathIgnorePatterns": [
"/node_modules/"
],
"testResultsProcessor": "jest-sonar-reporter"
},
"jestSonar": {
"reportPath": "coverage",
"reportFile": "test-reporter.xml",
"indent": 4
},
"homepage": "https://github.com/Upekshe/simple-ldap-server#readme"
}