-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.47 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
{
"name": "users-session-manager",
"version": "1.0.16",
"description": "A simple Node.js library to manage users sessions on a web application or any kind of JS apps",
"main": "index.js",
"scripts": {
"test": "mocha",
"test-cov": "nyc npm test",
"test-coveralls": "nyc npm test && nyc report --reporter=text-lcov | coveralls"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Elius94/users-session-manager.git"
},
"keywords": [
"webapp",
"sessions",
"login",
"logout",
"users",
"sessions",
"session",
"manager",
"websocket",
"website",
"sessions",
"login-system",
"session-manager",
"session-manager-nodejs",
"session-manager-node",
"session-manager-nodejs-library"
],
"author": "Elia Lazzari",
"license": "SEE LICENSE IN LICENSE",
"bugs": {
"url": "https://github.com/Elius94/users-session-manager/issues"
},
"homepage": "https://github.com/Elius94/users-session-manager#readme",
"dependencies": {
"meaningful-string": "^1.3.1"
},
"devDependencies": {
"@babel/plugin-proposal-private-methods": "^7.16.11",
"chai": "^4.3.4",
"coveralls": "^3.1.1",
"mocha": "^9.1.3",
"mocha-lcov-reporter": "^1.3.0",
"nanoid": ">=3.1.31",
"nyc": "^15.1.0",
"sinon": "^12.0.1"
}
}