-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 1.04 KB
/
Copy pathpackage.json
File metadata and controls
35 lines (35 loc) · 1.04 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
{
"name": "api-assassins",
"version": "1.0.0",
"description": "Archipel secure offline P2P network",
"main": "src/index.js",
"type": "commonjs",
"bin": {
"archipel": "src/cli.js"
},
"scripts": {
"start": "node src/cli.js start",
"archipel": "node src/cli.js",
"test:frame": "node scripts/frame_test.js",
"test:crypto": "node test-crypto.js",
"test": "npm run test:frame && npm run test:crypto",
"team:sync:once": "bash scripts/team-autosync.sh --once --run-tests",
"team:autosync": "bash scripts/team-autosync.sh --interval 30",
"team:autosync:test": "bash scripts/team-autosync.sh --interval 30 --run-tests"
},
"repository": {
"type": "git",
"url": "git+https://github.com/NtiecheVianel/api-assassins.git"
},
"license": "ISC",
"bugs": {
"url": "https://github.com/NtiecheVianel/api-assassins/issues"
},
"homepage": "https://github.com/NtiecheVianel/api-assassins#readme",
"dependencies": {
"libsodium-wrappers": "^0.8.2"
},
"devDependencies": {
"electron": "^40.6.1"
}
}