-
Notifications
You must be signed in to change notification settings - Fork 31
/
package.json
49 lines (49 loc) · 1.16 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
{
"name": "pi-camera-connect",
"version": "0.3.4",
"description": "Library to capture and stream Raspberry Pi camera data directly to NodeJS",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"author": {
"name": "Launchcode",
"email": "admin@lc.dev",
"url": "https://lc.dev"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/launchcodedev/pi-camera-connect"
},
"scripts": {
"build": "tsc -b",
"clean": "rm -rf dist *.tsbuildinfo",
"lint": "eslint --ext .ts,.tsx src",
"fix": "eslint --ext .ts,.tsx src --fix",
"test": "jest --runInBand",
"prepublishOnly": "yarn clean && yarn build"
},
"dependencies": {},
"devDependencies": {
"@lcdev/eslint-config": "0.2",
"@lcdev/jest": "0.2",
"@lcdev/prettier": "0.1",
"@lcdev/tsconfig": "0.1",
"@types/jest": "25",
"@types/node": "*",
"eslint": "6",
"jest": "25",
"prettier": "1",
"typescript": "3"
},
"jest": {
"preset": "@lcdev/jest"
},
"prettier": "@lcdev/prettier",
"eslintConfig": {
"extends": "@lcdev",
"rules": {
"no-constant-condition": 0,
"no-shadow": 0
}
}
}