-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.18 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
{
"name": "@pcnate/raspberry-pi-camera",
"version": "1.0.4",
"description": "nodejs camera application to connect to server via socket.io",
"scripts": {
"dev": "cross-env NODE_ENV=development nodemon emulate.js",
"configure": "node configure.js",
"test": "echo \"Notice: no tests are defined, passing\" && exit 0",
"preversion": "npm run test",
"postversion": "git push && git push --tags && npm publish"
},
"bin": {
"raspberry-pi-camera": "./server.js",
"raspberry-pi-camera-config": "./configure.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/pcnate/raspberry-pi-camera.git"
},
"author": "Nathan Baker <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/pcnate/raspberry-pi-camera/issues"
},
"homepage": "https://github.com/pcnate/raspberry-pi-camera#readme",
"dependencies": {
"await-sleep": "0.0.1",
"chokidar": "^2.1.8",
"dotenv": "^6.2.0",
"form-data": "^2.5.1",
"fs-extra": "^7.0.1",
"ini": "^1.3.5",
"path": "^0.12.7",
"prompt": "^1.0.0",
"uuid": "^3.4.0"
},
"devDependencies": {
"cross-env": "^5.2.1",
"npm-nomaster-commits": "*"
}
}