-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
77 lines (77 loc) · 1.99 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
{
"name": "gifski-command",
"version": "1.0.6",
"description": "Node.js module for gifski GIF encoder CLI",
"author": {
"name": "Lorenzo Pichilli",
"email": "[email protected]",
"url": "https://github.com/pichillilorenzo"
},
"homepage": "https://github.com/pichillilorenzo/gifski-command#readme",
"funding": {
"type": "individual",
"url": "https://www.paypal.me/LorenzoPichilli"
},
"repository": {
"type": "git",
"url": "git+https://github.com/pichillilorenzo/gifski-command.git"
},
"license": "ISC",
"bugs": {
"url": "https://github.com/pichillilorenzo/gifski-command/issues"
},
"keywords": [
"gifski",
"gifski-cli",
"gifski-gif",
"gifski-encoder",
"video",
"gif",
"gif-encoder",
"encoder",
"converter",
"ffmpeg",
"png"
],
"main": "lib/index.js",
"bin": {
"gifski-command": "lib/cli.js"
},
"files": [
"lib",
"CHANGELOG.md",
"LICENSE",
"README.md"
],
"scripts": {
"start": "ts-node src/cli.ts",
"build": "tsc --build && typedoc --out docs src/index.ts",
"clean": "tsc --build --clean",
"watch": "tsc --watch",
"postbuild": "minimize-js ./lib",
"generate-test-frames": "rimraf './test/**/*.png' && ffmpeg -i ./test/video.mp4 ./test/video.mp4.frame%04d.png",
"test": "rimraf ./coverage && npm run generate-test-frames && jest --coverage && rimraf './test/**/*.png'",
"coverage": "coveralls < coverage/lcov.info",
"prepare": "npm run build && npm run test && npm run coverage"
},
"dependencies": {
"commander": "^8.3.0",
"gifski": "^1.7.1",
"glob": "^7.2.0",
"progress-barjs": "^2.2.1",
"tslib": "^2.3.1"
},
"devDependencies": {
"@types/glob": "^7.2.0",
"@types/jest": "^29.1.0",
"@types/node": "^16.11.11",
"coveralls": "^3.1.1",
"jest": "^29.1.1",
"minimize-js": "^1.3.0",
"rimraf": "^3.0.2",
"ts-jest": "^29.0.3",
"ts-node": "^10.9.1",
"typedoc": "^0.23.15",
"typescript": "^4.5.2"
}
}