forked from zemirco/couch-pwd
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
44 lines (44 loc) · 1.02 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
{
"name": "@sensu/couch-pwd",
"version": "1.0.1",
"description": "CouchDB salt and password generation with PBKDF2",
"scripts": {
"lint": "./node_modules/.bin/eslint index.js test",
"test": "./node_modules/.bin/mocha --require should --reporter spec"
},
"keywords": [
"couch",
"couchdb",
"password",
"pwd",
"pbkdf2"
],
"author": {
"name": "Mirco Zeiss",
"email": "[email protected]",
"twitter": "zeMirco"
},
"contributors": [
{
"name": "Bjorn Stromberg",
"email": "[email protected]",
"url": "http://bjornstar.com/about"
}
],
"repository": {
"type": "git",
"url": "https://github.com/zeMirco/couch-pwd"
},
"license": "MIT",
"devDependencies": {
"eslint": "^4.7.1",
"eslint-config-standard": "^10.2.1",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-node": "^5.1.1",
"eslint-plugin-promise": "^3.5.0",
"eslint-plugin-standard": "^3.0.1",
"mocha": "~ 3.5.3",
"nano": "~6.4.0",
"should": "~13.0.1"
}
}