-
-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.31 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.31 KB
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
{
"name": "session-client",
"version": "1.0.0",
"description": "Simple Session client",
"main": "sample.js",
"directories": {
"lib": "lib"
},
"scripts": {
"lint": "node_modules/.bin/eslint . --cache --ext .js",
"lint-fix": "node_modules/.bin/eslint . --fix --ext .js",
"lint-full": "node_modules/.bin/eslint . --ext .js",
"test": "echo \"Error: no test specified\" && exit 1",
"jsdoc": "jsdoc -d docs lib/lns.js session-client.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/neuroscr/node-session-client.git"
},
"keywords": [
"Session"
],
"author": "Ryan Tharp",
"license": "ISC",
"bugs": {
"url": "https://github.com/neuroscr/node-session-client/issues"
},
"homepage": "https://github.com/neuroscr/node-session-client#readme",
"dependencies": {
"buffer-crc32": "^0.2.13",
"bytebuffer": "^5.0.1",
"form-data": "^3.0.0",
"libsignal": "^2.0.1",
"libsodium-wrappers": "^0.7.8",
"libsodium-wrappers-sumo": "^0.7.10",
"node-fetch": "^2.6.7",
"protobufjs": "^6.10.1"
},
"devDependencies": {
"eslint": "^7.6.0",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1"
}
}