-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.28 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.28 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
{
"name": "lottie-compress",
"version": "1.3.0",
"description": "lottie compress",
"main": "lib/index.js",
"files": [
"lib"
],
"scripts": {
"dev": "tsc",
"dev:w": "tsc --watch",
"build": "tsc",
"example": "node example/test.js",
"test": "egg-bin test --typescript",
"test-travis": "egg-bin cov --typescript",
"test:w": "egg-bin test --typescript --watch test/**/*.test.ts --watch-extensions ts"
},
"keywords": [
"lottie",
"tiny",
"lottie compress",
"lottie optimization"
],
"author": "chenpx976",
"repository": "git@github.com:fancy-lottie/lottie-compress.git",
"contributors": [
{
"name": "chenpx976",
"email": "chenpx976@gmail.com"
},
{
"name": "weiesky",
"email": "sbxdwz@qq.com"
}
],
"license": "ISC",
"dependencies": {
"@napi-rs/canvas": "^0.1.76",
"assert": "^1.4.1",
"await-stream-ready": "^1.0.1",
"imagemin": "^7.0.0",
"imagemin-pngquant": "^8.0.0",
"mz-modules": "^2.1.0",
"sharp": "0.32.0",
"stream-to-buf": "^1.0.0",
"tinify": "^1.6.0-beta.2"
},
"devDependencies": {
"@types/node": "^10.12.9",
"@types/mocha": "^5.2.7",
"egg-bin": "^4.9.0",
"ts-loader": "^5.3.0",
"tslint": "^5.11.0",
"typescript": "^3.2.1"
}
}