forked from dlukanin/node-raspistill
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.43 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
{
"name": "node-raspistill",
"version": "0.0.14",
"description": "Node wrapper for taking photos using Raspberry Pi raspistill app.",
"main": "dist/index.js",
"typings": "build/index",
"scripts": {
"build": "tsc",
"watch": "tsc --watch",
"test": "istanbul cover node_modules/.bin/_mocha build/test",
"lint": "tslint './src/**/*.ts' --type-check --project tsconfig.json",
"coverage": "cat ./coverage/lcov.info | ./node_modules/.bin/coveralls"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dlukanin/node-raspistill.git"
},
"keywords": [
"raspberry",
"camera",
"raspistill",
"typescript"
],
"author": "dylukanin@gmail.com",
"license": "MIT",
"bugs": {
"url": "https://github.com/dlukanin/node-raspistill/issues"
},
"homepage": "https://github.com/dlukanin/node-raspistill#readme",
"devDependencies": {
"@types/chai": "^3.4.35",
"@types/fs-promise": "^1.0.1",
"@types/mocha": "^2.2.39",
"@types/node": "^7.0.5",
"@types/sinon": "^2.1.2",
"chai": "^3.5.0",
"coveralls": "^2.13.1",
"fs-promise": "^2.0.0",
"istanbul": "^0.4.5",
"js-image-generator": "^1.0.2",
"mocha": "^3.2.0",
"nock-exec": "^0.1.0",
"rmdir": "^1.2.0",
"sinon": "^2.1.0",
"tslint": "^5.0.0",
"tslint-eslint-rules": "^4.0.0",
"typescript": "^2.3.2"
},
"dependencies": {
"image-type": "^3.0.0",
"object.assign": "^4.0.4"
}
}