-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.28 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
{
"name": "nightcall",
"version": "1.2.1",
"description": "Automatically toggle between Light and Dark system themes based on sunrise and sunset",
"main": "src/index.js",
"author": "Kris Witalewski",
"license": "MIT",
"private": false,
"dependencies": {
"axios": "0.18.0",
"chalk": "^2.4.1",
"global": "^4.3.2",
"mkdirp": "0.5.1",
"node-localstorage": "^1.3.1",
"node-wifiscanner": "0.2.1",
"public-ip": "5.0.0",
"rimraf": "^2.6.2",
"suncalc": "1.8.0",
"wifi-scanner": "0.0.4",
"winston": "3.1.0",
"snyk": "^1.996.0"
},
"scripts": {
"postinstall": "yarn start",
"start": "node bin/nightcall.js start",
"test": "jest --coverage --coverageReporters=text-lcov | coveralls",
"preuninstall": "node bin/nightcall.js uninstall",
"snyk-protect": "snyk protect",
"prepublish": "npm run snyk-protect"
},
"husky": {
"hooks": {
"pre-commit": "yarn run jest",
"pre-push": "yarn run jest"
}
},
"bin": {
"nightcall": "./bin/nightcall.js"
},
"repository": {
"type": "git",
"url": "https://github.com/witalewski/nightcall.git"
},
"preferGlobal": true,
"devDependencies": {
"coveralls": "^3.0.2",
"husky": "^1.1.2",
"jest": "^23.6.0",
"sinon": "^6.3.5"
},
"snyk": true
}