-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
57 lines (57 loc) · 1.42 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
{
"name": "argon2themax",
"version": "1.3.0",
"description": "Hash passwords with the most costly Argon2 hash possible",
"repository": {
"type": "git",
"url": "git+https://github.com/jdconley/argon2themax.git"
},
"scripts": {
"compile": "tslint --project tslint.json && tsc -d && tsc -p . && babel -d dist/lib/ dist/src/ && cp -rf dist/lib/* dist/src/",
"prepublish": "rm -rf dist && npm run compile",
"pretest": "npm run compile && cp test/*.js dist/test",
"test": "mocha dist/test/*.js"
},
"main": "dist/src/index.js",
"typings": "dist/src/index.d.ts",
"keywords": [
"password",
"hash",
"hashing",
"argon2",
"security"
],
"author": {
"name": "JD Conley",
"email": "jd.conley@gmail.com"
},
"bugs": {
"url": "https://github.com/jdconley/argon2themax/issues"
},
"license": "MIT",
"engines": {
"node": "^4.0.0"
},
"files": [
"dist/src"
],
"dependencies": {
"argon2": "^0.26.2",
"babel-runtime": "^6.11.6",
"lodash": "^4.16.4"
},
"devDependencies": {
"@types/chai": "^3.4.34",
"@types/lodash": "^4.14.37",
"@types/mocha": "^2.2.32",
"@types/node": "^7.0.12",
"babel-cli": "^6.16.0",
"babel-plugin-transform-runtime": "^6.15.0",
"babel-preset-es2015": "^6.16.0",
"babel-preset-stage-3": "^6.17.0",
"chai": "^3.5.0",
"mocha": "^3.0.2",
"tslint": "^5.0.0",
"typescript": "^2.0.3"
}
}