-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathpackage.json
69 lines (69 loc) · 1.92 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
{
"name": "node-raspistill",
"version": "2.0.1",
"description": "Node wrapper for taking photos using Raspberry Pi raspistill app.",
"main": "build/index.js",
"types": "build/index.d.ts",
"typings": "build/index",
"scripts": {
"build": "rm -rf ./build && tsc",
"watch": "tsc --watch",
"test": "jest --coverage --runInBand --forceExit",
"lint": "eslint --fix 'src/**/*.ts' && eslint --fix 'test/**/*.ts'",
"ci-lint": "eslint 'src/**/*.ts' && eslint 'test/**/*.ts'",
"coverage": "cat ./coverage/lcov.info | coveralls",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dlukanin/node-raspistill.git"
},
"keywords": [
"raspberry",
"camera",
"raspistill",
"typescript",
"iot"
],
"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/jest": "^26.0.24",
"@types/node": "^12.20.27",
"@typescript-eslint/eslint-plugin": "^4.32.0",
"@typescript-eslint/parser": "^4.32.0",
"coveralls": "^3.1.1",
"eslint": "^7.32.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-prettier": "8.3.0",
"eslint-plugin-import": "^2.24.2",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "4.0.0",
"eslint-plugin-react": "^7.26.1",
"fs-promise": "^2.0.3",
"husky": "7.0.2",
"jest": "^26.6.3",
"js-image-generator": "^1.0.3",
"lint-staged": "11.1.2",
"prettier": "^2.4.1",
"rimraf": "^3.0.2",
"source-map-support": "^0.5.20",
"ts-jest": "^26.5.6",
"ts-node": "^10.2.1",
"typescript": "^4.4.3"
},
"dependencies": {
"@dlukanin/cla-mapper": "^1.2.1",
"image-type": "^4.1.0"
},
"lint-staged": {
"*.ts": [
"eslint --fix"
],
"*.js": "eslint --cache --fix"
}
}