forked from steemit/crypto-session
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 835 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 835 Bytes
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
{
"name": "@steem/crypto-session",
"version": "1.0.3",
"description": "use koa-session, but encrypted",
"main": "index.js",
"dependencies": {
"koa-session": "3",
"libsodium": "^0.4.8",
"libsodium-wrappers": "^0.4.8"
},
"devDependencies": {
"istanbul-harmony": "0",
"koa": "0",
"mocha": "2",
"should": "7",
"supertest": "1"
},
"scripts": {
"test": "mocha -R spec -t 5000 test/*.js",
"test-cov": "istanbul cover node_modules/.bin/_mocha -- -R dot -t 5000 test/*.js",
"test-travis": "istanbul cover node_modules/.bin/_mocha --report lcovonly -- -R dot -t 5000 test/*.js"
},
"repository": "steemit/crypto-session",
"files": [
"index.js"
],
"keywords": [
"encrypted",
"session",
"crypto",
"koa",
"aes"
],
"author": "",
"license": "MIT"
}