-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
60 lines (60 loc) · 1.7 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
{
"name": "ffmpeg-remix",
"version": "0.1.0",
"description": "ffmpeg slice/concat",
"main": "dist/index.js",
"files": [
"bin/",
"dist/"
],
"scripts": {
"clean": "rimraf dist",
"lint": "eslint src test",
"check": "npm run lint -s && dependency-check package.json --entry src",
"watch": "watch 'npm run build' src test",
"prebuild": "npm run check -s && npm run clean -s",
"build": "babel --optional runtime src -d dist",
"prepublish": "npm run build -s",
"deploy": "git pull --rebase origin master && git push origin master",
"patch": "npm version patch && npm publish",
"minor": "npm version minor && npm publish",
"major": "npm version major && npm publish",
"postpublish": "git push origin master --follow-tags",
"toc": "doctoc --github --title \"# Changelog\" CHANGELOG.md"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Laurian/ffmpeg-remix.git"
},
"keywords": [
"remix",
"ffmpeg",
"video"
],
"author": "Laurian Gridinoc <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/Laurian/ffmpeg-remix/issues"
},
"homepage": "https://github.com/Laurian/ffmpeg-remix#readme",
"devDependencies": {
"babel-cli": "^6.11.4",
"babel-core": "^6.13.2",
"babel-eslint": "^8.2.6",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-preset-es2015": "^6.13.2",
"dependency-check": "^2.5.1",
"doctoc": "^0.15.0",
"eslint": "^5.1.0",
"rimraf": "^2.4.2",
"tap-spec": "^5.0.0",
"tape": "^4.2.2",
"watch": "^0.16.0"
},
"dependencies": {
"async": "^2.0.1",
"debug": "^2.2.0",
"fluent-ffmpeg": "^2.1.0",
"tmp": "0.0.28"
}
}