forked from arn1313/pi-spy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
82 lines (82 loc) · 1.96 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "pi-spy",
"version": "1.0.0",
"description": "Basic video surveillance using Raspberry Pi, with our built in API",
"main": "entry.js",
"directories": {
"test": "tests"
},
"scripts": {
"start": "node entry.js",
"start front": "live-server --port=8080 --host=localhost",
"start:watch": "nodemon entry.js",
"start:debug": "DEBUG=piSpy* nodemon entry.js",
"start-db": "mkdir -p ./db && mongod --dbpath ./db",
"stop-db": "killall mongod",
"test": "jest --runInBand",
"test:exit": "jest --forceExit",
"test:watch": "jest --watchAll",
"lint": "eslint .",
"lint:test": "npm run lint && npm test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/arn1313/pi-spy.git"
},
"jest": {
"verbose": true,
"testEnvironment": "node",
"setupFiles": [
"./__test__/lib/jest-setup.js"
],
"collectCoverage": true,
"coverageDirectory": "./coverage",
"coverageThreshold": {
"global": {
"branches": 50,
"functions": 80,
"lines": 80,
"statements": 80
}
}
},
"keywords": [
"Raspberry Pi",
"Surveillance",
"JavaScript",
"Node",
"API"
],
"devDependencies": {
"eslint": "^4.5.0",
"faker": "^4.1.0",
"jest": "^20.0.4",
"superagent": "^3.6.0"
},
"dependencies": {
"bcrypt": "^1.0.3",
"bluebird": "^3.5.0",
"body-parser": "^1.17.2",
"cors": "^2.8.4",
"debug": "^3.0.1",
"del": "^3.0.0",
"dotenv": "^4.0.0",
"express": "^4.15.4",
"fmerge": "^1.2.0",
"googleapis": "^21.3.0",
"googleauth": "^3.0.2",
"jsonwebtoken": "^8.0.0",
"live-server": "^1.2.0",
"mkdirp": "^0.5.1",
"mongoose": "^4.11.10",
"multer": "^1.3.0",
"request": "^2.82.0",
"yargs": "^9.0.1"
},
"author": "Team Pi Spy",
"license": "MIT",
"bugs": {
"url": "https://github.com/arn1313/pi-spy/issues"
},
"homepage": "https://github.com/arn1313/pi-spy#readme"
}