-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.14 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
{
"name": "sqrl-protocol",
"version": "0.8.0",
"description": "SQRL authentication",
"license": "MIT",
"engines": {
"node": ">= 8"
},
"repository": {
"type": "git",
"url": "https://github.com/jjasonclark/sqrl-protocol"
},
"author": "Jason Clark <[email protected]> (https://jjasonclark.com)",
"keywords": [
"authentication",
"crypto",
"ed25519",
"hmac",
"sqrl"
],
"main": "index.js",
"files": [
"CODE_OF_CONDUCT.md",
"lib/*.js"
],
"scripts": {
"format": "prettier --write '{lib/**/*.js,*.md,package.json,*.js}'",
"lint": "eslint lib/**/*.js index.js",
"test": "jest --collect-coverage"
},
"dependencies": {
"debug": ">=1",
"dlv": "~1",
"tweetnacl": "~1",
"universal-base64url": "~1"
},
"devDependencies": {
"eslint": "~6",
"eslint-config-prettier": "~6",
"eslint-plugin-filenames": "~1",
"eslint-plugin-import": "~2",
"eslint-plugin-jest": "~23",
"eslint-plugin-node": "~11",
"eslint-plugin-promise": "~4",
"eslint-plugin-test-filenames": "~0",
"jest": "~25",
"memory-sqrl-store": ">= 0.5.0",
"prettier": ">= 1"
}
}