-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
44 lines (44 loc) · 1.48 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": "gun-restrict-examples",
"version": "1.2.5",
"description": "Examples of how to restrict put and get with GUN",
"main": "index.js",
"private": true,
"scripts": {
"test": "standard && ava",
"unrestricted": "concurrently -k \"node www/server\" \"node gun-servers/server-gun-unrestricted\" \"node www/server 4000 not-authenticated.html\"",
"sea": "concurrently -k \"node www/server 3000 authenticated-sea.html\" \"node gun-servers/server-gun-unrestricted\" \"node www/server 4000 not-authenticated-sea.html\"",
"start": "concurrently -k \"node www/server\" \"node gun-servers/server-gun-restricted-put\" \"node www/server 4000 not-authenticated.html\"",
"refresh": "rm -rf node_modules && rm package-lock.json && npm install",
"standard-fix": "standard --fix"
},
"standard": {
"ignore": [
"www"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/zrrrzzt/gun-restrict-examples.git"
},
"keywords": [],
"author": "Geir Gåsodden <geir.gasodden@pythonia.no> (https://github.com/zrrrzzt)",
"license": "MIT",
"bugs": {
"url": "https://github.com/zrrrzzt/gun-restrict-examples/issues"
},
"homepage": "https://github.com/zrrrzzt/gun-restrict-examples#readme",
"dependencies": {
"concurrently": "6.5.1",
"finalhandler": "1.1.2",
"gun": "0.2020.1235",
"serve-static": "1.14.2"
},
"devDependencies": {
"ava": "3.15.0",
"standard": "16.0.4"
},
"engines": {
"node": ">=14.17.0"
}
}