-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.62 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
{
"name": "svo-processor",
"version": "1.3.6",
"description": "CLI application to process recorded SVO files from ZED cameras",
"type": "module",
"scripts": {
"lint": "eslint ./src ./bin --ext .js,.json",
"test": "node ./bin/svo-processor.js -v",
"commit": "git-cz",
"release": "standard-version",
"git:publish": "git push --follow-tags",
"npm:publish": "npm publish --access public"
},
"bin": {
"svo-processor": "./bin/svo-processor.js"
},
"keywords": [],
"author": "FlorentinTh",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/FlorentinTh/svo-processor.git"
},
"bugs": {
"url": "https://github.com/FlorentinTh/svo-processor/issues"
},
"homepage": "https://github.com/FlorentinTh/svo-processor#readme",
"pre-commit": [],
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"devDependencies": {
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.18.0",
"eslint-config-prettier": "^8.5.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-json": "^3.1.0",
"eslint-plugin-prettier": "^4.1.0",
"pre-commit": "^1.2.2",
"prettier": "^2.7.1",
"standard-version": "^9.5.0"
},
"dependencies": {
"await-spawn": "^4.0.2",
"chalk": "^5.0.1",
"cli-progress": "^3.11.2",
"ffprobe": "^1.1.2",
"ffprobe-static": "^3.1.0",
"file-type": "^17.1.2",
"handbrake-js": "^6.0.0",
"readdirp": "^3.6.0",
"yargs": "^17.5.1"
},
"overrides": {
"commitizen": "^4.2.4",
"cz-conventional-changelog": "^3.3.0",
"minimist": "^1.2.6"
}
}