-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
26 lines (26 loc) · 924 Bytes
/
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
{
"name": "ldapjs-memory-server",
"version": "1.0.0",
"description": "ldapjs in-memory server implementation (from the example at ldapjs.org)",
"main": "index.js",
"scripts": {
"start": "node index.js",
"build": "npm install && typings install",
"test": "echo \"Error: no test specified\" && exit 1",
"docker:build": "docker build -t calexandre/ldapjs-memory-server .",
"docker:run": "docker run --name ldapjs-memory-server -p 1389:1389 -d calexandre/ldapjs-memory-server && docker ps"
},
"repository": {
"type": "git",
"url": "git+https://github.com/calexandre/ldapjs-memory-server.git"
},
"author": "Carlos Alexandre <[email protected]>",
"license": "ISC",
"bugs": {
"url": "https://github.com/calexandre/ldapjs-memory-server/issues"
},
"homepage": "https://github.com/calexandre/ldapjs-memory-server#readme",
"dependencies": {
"ldapjs": "^1.0.0"
}
}