-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.04 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.04 KB
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
{
"name": "ff-util",
"version": "1.0.9",
"description": "A set of useful utilities for running ffmpeg with node",
"main": "dist/index.js",
"scripts": {
"build": "tsc -d",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage --coverageReporters=text-lcov | coveralls",
"lint": "tslint --project tsconfig.json",
"ci": "npm run lint && npm run test && npm run build",
"cd": "npm run ci && npm run test:coverage && npm publish"
},
"repository": {
"type": "git",
"url": "git+https://github.com/salmoro/ffmpeg-utils.git"
},
"keywords": [
"ffmpeg"
],
"author": "Shlomo Morosow",
"license": "MIT",
"bugs": {
"url": "https://github.com/salmoro/ffmpeg-utils/issues"
},
"homepage": "https://github.com/salmoro/ffmpeg-utils#readme",
"dependencies": {
"@types/jest": "^24.0.18",
"@types/node": "^12.7.4"
},
"devDependencies": {
"coveralls": "^3.0.6",
"jest": "^24.9.0",
"ts-jest": "^24.0.2",
"tslint": "^5.19.0",
"typescript": "^3.6.2"
}
}