-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
42 lines (42 loc) · 1.19 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": "couchdb-calculate-session-id",
"description": "calculates valid CouchDB session IDs using username, salt, secret & timestamp",
"main": "lib/index.js",
"scripts": {
"pertest": "standard",
"test": "tape tests/index.js",
"test:coverage": "istanbul cover tests",
"test:coverage:upload": "istanbul-coveralls",
"semantic-release": "semantic-release",
"postsemantic-release": "npm run test:coverage && npm run test:coverage:upload"
},
"repository": {
"type": "git",
"url": "https://github.com/hoodiehq/couchdb-calculate-session-id.git"
},
"keywords": [
"couchdb",
"session"
],
"author": "The Hoodie Community",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/hoodiehq/couchdb-calculate-session-id/issues"
},
"homepage": "https://github.com/hoodiehq/couchdb-calculate-session-id#readme",
"devDependencies": {
"coveralls": "^3.0.0",
"istanbul": "^0.4.1",
"istanbul-coveralls": "^1.0.3",
"semantic-release": "^15.0.0",
"tape": "^4.4.0"
},
"dependencies": {
"aproba": "^1.0.1",
"base64url": "^3.0.0",
"crypto-lite": "^0.2.0"
},
"browser": {
"./lib/hmac.js": "./lib/hmac-browser.js"
}
}