-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
42 lines (42 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
{
"name": "argon2-ffi",
"version": "1.2.0",
"description": "Node.js bindings for argon2 password hashing and proof-of-work algorithm",
"main": "lib/index.js",
"types": "types",
"scripts": {
"test": "mocha --reporter spec",
"prettier-check": "prettier --check lib test",
"lint": "eslint .",
"dtslint": "dtslint types"
},
"repository": {
"type": "git",
"url": "https://github.com/cjlarose/argon2-ffi.git"
},
"author": "Chris LaRose",
"license": "ISC",
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"dependencies": {
"any-promise": "^1.1.0",
"ffi-napi": "^3.1.0",
"ref-napi": "^1.4.0"
},
"devDependencies": {
"@types/node": "^13.13.0",
"dtslint": "^3.4.1",
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.1.0",
"eslint-config-prettier": "^6.10.1",
"eslint-plugin-import": "^2.20.2",
"husky": "^4.2.5",
"mocha": "^5.2.0",
"node-gyp": "^3.3.1",
"prettier": "^2.0.4",
"pretty-quick": "^2.0.1"
}
}