-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.32 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
53
54
55
56
{
"name": "gun-server",
"version": "2.0.0",
"description": "GUN server with s3 persistence",
"private": true,
"license": "MIT",
"author": {
"name": "Geir Gåsodden",
"email": "[email protected]",
"url": "https://github.com/zrrrzzt"
},
"main": "index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/Alheimsins/gun-server.git"
},
"bugs": {
"url": "https://github.com/Alheimsins/gun-server/issues"
},
"homepage": "https://github.com/Alheimsins/gun-server#readme",
"engines": {
"node": ">=14.2.0"
},
"scripts": {
"test": "standard && npm audit && ava",
"test-offline": "standard && ava",
"coverage": "nyc ava",
"coveralls": "nyc ava && nyc report --reporter=lcov && cat coverage/lcov.info | coveralls",
"standard-fix": "standard --fix",
"start": "node index.js",
"refresh": "rm -rf node_modules && rm package-lock.json && npm install",
"deploy": "now && now alias"
},
"keywords": [
"gun",
"server",
"s3"
],
"dependencies": {
"aws-sdk": "2.1226.0",
"dotenv": "16.0.3",
"gun": "0.2020.1238"
},
"devDependencies": {
"ava": "5.1.0",
"coveralls": "3.1.1",
"husky": "8.0.2",
"nyc": "15.1.0",
"standard": "17.0.0"
},
"husky": {
"hooks": {
"pre-commit": "npm test"
}
}
}