-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.09 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
{
"name": "secure-comms-api",
"version": "1.0.0",
"description": "API config and functionality for Network Canvas client & server",
"license": "GPL-3.0-or-later",
"main": "cipher.js",
"engines": {
"node": "12.14.1",
"npm": "7.6.3"
},
"scripts": {
"test": "jest",
"lint": "eslint *.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/complexdatacollective/secure-comms-api.git"
},
"author": "Complex Data Collective",
"bugs": {
"url": "https://github.com/complexdatacollective/secure-comms-api/issues"
},
"homepage": "https://github.com/complexdatacollective/secure-comms-api#readme",
"devDependencies": {
"babel-core": "^6.26.3",
"babel-preset-env": "^1.7.0",
"eslint": "^5.4.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-import": "^2.14.0",
"jest": "^23.4.0"
},
"jest": {
"collectCoverageFrom": [
"*.js"
],
"setupFiles": [],
"testPathIgnorePatterns": [],
"testEnvironment": "node"
},
"dependencies": {
"libsodium-wrappers": "^0.7.3"
},
"peerDependencies": {}
}