-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
34 lines (34 loc) · 809 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
27
28
29
30
31
32
33
34
{
"name": "shacrypt",
"description": "Wrapper over sha256-crypt and sha512-crypt functions originally created by Ulrich Drepper http://www.akkadia.org/drepper/SHA-crypt.txt",
"version": "0.1.3",
"homepage": "https://github.com/oleksiyk/shacrypt",
"author": {
"name": "Oleksiy Krivoshey",
"email": "[email protected]"
},
"main": "shacrypt",
"scripts": {
"test": "make test"
},
"dependencies": {
"nan": "^2.0.8"
},
"devDependencies": {
"mocha": "~=2.3.4",
"chai": "~=3.4.1"
},
"engines": {
"node": ">= 0.8.0"
},
"bugs": {
"url": "https://github.com/oleksiyk/shacrypt/issues"
},
"repository": {
"type": "git",
"url": "git://github.com/oleksiyk/shacrypt.git"
},
"gypfile": true,
"readmeFilename": "README.md",
"license": "MIT"
}