-
-
Notifications
You must be signed in to change notification settings - Fork 21
/
package.json
92 lines (92 loc) · 3.24 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
83
84
85
86
87
88
89
90
91
92
{
"name": "@tsed/root",
"version": "3.2.0",
"description": "Node.js wrapper of C library libgphoto2 written in TypeScript",
"author": "Romain Lenzotti",
"private": true,
"contributors": [
"Alexander Gusez (https://github.com/goooseman)"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/tsedio/ts-gphoto2-driver.git"
},
"bugs": {
"url": "https://github.com/tsedio/ts-gphoto2-driver/issues"
},
"homepage": "https://github.com/tsedio/ts-gphoto2-driver",
"scripts": {
"configure": "monorepo ci configure",
"test": "yarn test:lint && yarn test:coverage",
"test:unit": "cross-env NODE_ENV=test lerna run test",
"test:coverage": "yarn test:unit && yarn coverage:merge",
"coverage:merge": "istanbul-merge --out coverage/coverage-final.json 'packages/*/coverage/coverage-final.json' && nyc report --temp-dir ./coverage --reporter clover --reporter lcov --report-dir ./coverage",
"test:lint": "eslint packages --ext .ts",
"test:lint:fix": "eslint packages --ext .ts --fix",
"build": "monorepo build",
"prettier": "prettier '**/*.{ts,js,json,md,yml,yaml}' --write",
"release": "semantic-release",
"release:dryRun": "semantic-release --dry-run",
"start": "lerna run start --stream",
"start:abilities": "lerna run start:abilities",
"start:camera": "lerna run start:camera",
"start:camera:abilities": "lerna run start:camera:abilities",
"start:camera:autoselect": "lerna run start:camera:autoselect",
"start:camera:info": "lerna run start:camera:info",
"start:camera:list:autodetect": "lerna run start:camera:list:autodetect",
"start:camera:list:liveview": "lerna run start:camera:list:liveview",
"start:camera:list:liveview:file": "lerna run start:camera:list:liveview:file",
"start:camera:scenario": "lerna run start:camera:scenario",
"start:camera:scenario:async": "lerna run start:camera:scenario:async",
"start:port:list": "lerna run start:port:list",
"start:widgets": "lerna run start:widgets",
"prepare": "is-ci || husky install"
},
"dependencies": {
"@commitlint/cli": "^16.2.3",
"@commitlint/config-conventional": "^16.0.0",
"@types/ffi-napi": "4.0.4",
"@types/ref-napi": "3.0.4",
"@tsed/monorepo-utils": "1.19.3",
"@types/jest": "27.0.3",
"@types/node": "16.11.11",
"@typescript-eslint/eslint-plugin": "^5.5.0",
"@typescript-eslint/parser": "^5.5.0",
"barrelsby": "2.5.1",
"cross-env": "7.0.3",
"eslint": "^8.4.0",
"eslint-config-prettier": "8.3.0",
"eslint-plugin-jest": "25.3.0",
"eslint-plugin-prettier": "4.0.0",
"gflow": "5.1.2",
"husky": "^7.0.4",
"is-ci": "^3.0.1",
"istanbul-merge": "^1.1.1",
"nyc": "^15.1.0",
"jest": "27.4.3",
"lerna": "4.0.0",
"lint-staged": "^12.3.7",
"normalize-path": "^3.0.0",
"prettier": "2.5.1",
"segfault-handler": "1.3.0",
"semantic-release": "17.4.7",
"ts-jest": "27.0.7",
"ts-node": "10.4.0",
"tsconfig-paths": "3.12.0",
"typescript": "4.5.2"
},
"resolutions": {
"ref-napi": "3.0.3"
},
"workspaces": {
"packages": [
"packages/*"
]
},
"monorepo": {
"productionBranch": "production",
"developBranch": "production",
"npmAccess": "public"
}
}