-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.2 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
57
{
"name": "sunshine",
"template": {
"extends": [
"nodeEslint"
],
"node": {
"noNodeLock": true
}
},
"version": "0.0.1",
"description": "nixOS Update Daemon",
"main": "index.js",
"scripts": {
"test": "mocha -A",
"cov": "nyc mocha",
"start": "DEBUG=* node src/bin.js --config ./config.yaml",
"lint": "eslint .",
"fix": "eslint --fix ."
},
"bin": {
"sunshine": "src/bin.js"
},
"keywords": [
"nixos",
"update",
"daemon"
],
"author": "Maciej Krüger <[email protected]>",
"license": "MPL-2.0",
"devDependencies": {
"eslint": "*",
"eslint-config-aegir-standalone": "*",
"eslint-config-oclif": "*",
"mocha": "*",
"nyc": "*"
},
"dependencies": {
"cron-parser": "^2.16.3",
"debug": "^4.1.1",
"joi": "^17.2.1",
"mkdirp": "^1.0.4",
"mkg-bin-gen": "^0.1.4",
"mkgs-tool": "^0.1.10",
"node-cron": "^2.0.3",
"rimraf": "^3.0.2",
"scriptrr": "^0.1.5"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ssd-solar/sunshine.git"
},
"bugs": {
"url": "https://github.com/ssd-solar/sunshine/issues"
},
"homepage": "https://github.com/ssd-solar/sunshine#readme"
}