-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
89 lines (89 loc) · 2.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
{
"name": "handbrake-bin",
"version": "0.0.0-development",
"description": "HandBrake wrapper that makes it seamlessly available as a local dependency",
"author": {
"name": "Rafael Milewski",
"email": "rafael.milewski@gmail.com",
"url": "https://github.com/milewski"
},
"license": "MIT",
"homepage": "https://github.com/milewski/handbrake-bin",
"bugs": {
"url": "https://github.com/milewski/handbrake-bin/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/milewski/handbrake-bin.git"
},
"main": "source/HandBrake.js",
"keywords": [
"handbrake",
"encode",
"transcode",
"video",
"mp4",
"m4v",
"avi",
"h.264",
"h.265",
"vp8",
"mp3"
],
"types": [
"declarations/source/HandBrake.d.ts",
"declarations/source/Installer.d.ts"
],
"files": [
"source/*.js",
"source/install-ubuntu.sh",
"declarations/source/HandBrake.d.ts",
"declarations/source/Installer.d.ts"
],
"bin": {
"handbrake": "source/handbrake-cli.js"
},
"scripts": {
"commit": "git-cz",
"precommit": "npm run prettier && npm run test",
"prettier": "prettier \"*/**/*.ts\" --config .prettierrc --ignore-path ./.prettierignore --write && git add .",
"postinstall": "node source/Installer.js install",
"install:ubuntu": "source/install-ubuntu.sh",
"prepublish": "npm run build && npm test",
"build": "tsc",
"pretest": "npm run build",
"test": "mocha --no-timeouts",
"semantic-release": "semantic-release"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"dependencies": {
"app-root-path": "^2.0.1",
"download": "^6.2.5",
"fs-extra": "^5.0.0",
"progress": "^2.0.0",
"rimraf": "^2.6.2",
"semver": "^5.4.1",
"unzip": "^0.1.11"
},
"devDependencies": {
"@types/fs-extra": "^5.0.0",
"@types/mocha": "^2.2.45",
"@types/node": "^8.5.2",
"commitizen": "^2.9.6",
"cz-conventional-changelog": "^2.1.0",
"expect.js": "^0.3.1",
"glob": "^7.1.2",
"husky": "^0.14.3",
"mocha": "^4.1.0",
"prettier": "^1.9.2",
"semantic-release": "^11.0.2",
"typescript": "^2.6.2"
}
}