-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
80 lines (80 loc) · 2.04 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
{
"name": "jpegasus",
"version": "1.16.1",
"description": "A client-side JavaScript tool that takes in a `File` of type `.jpeg`, `.png`, or `.gif` and returns a compressed `File` of type `.jpeg`.",
"main": "./lib/index.js",
"repository": {
"type": "git",
"url": "https://github.com/TonyBrobston/jpegasus"
},
"scripts": {
"acceptance": "./.scripts/runAcceptanceTests.sh",
"acceptance:interactive": "./.scripts/runAcceptanceTestsInteractive.sh",
"build": "rm -rf lib && tsc",
"coverage": "jest --coverage",
"documentation": "typedoc --readme none --theme markdown --plugin typedoc-plugin-markdown --hideGenerator",
"lint:ts": "tslint --fix -c tslint.json 'src/**/*.ts' 'tests/**/*.test.ts'",
"postversion": "git push && git push --tags",
"test": "yarn lint:ts && yarn coverage && yarn acceptance",
"unit": "npx jest"
},
"keywords": [
"javascript",
"image",
"jpeg",
"gif",
"png",
"client",
"client-side",
"client side",
"browser",
"dom",
"compress",
"file",
"blob",
"compression",
"compressor",
"canvas",
"scale",
"resize",
"size",
"reduce",
"smaller",
"front",
"front-end",
"front end"
],
"author": "Tony Brobston",
"license": "MIT",
"dependencies": {},
"devDependencies": {
"@commitlint/cli": "12.1.4",
"@commitlint/config-conventional": "12.1.4",
"@types/chance": "^1.1.1",
"@types/jest": "^26.0.20",
"@types/node": "14.14.35",
"chance": "^1.1.7",
"commitlint": "12.1.4",
"cypress": "6.7.0",
"cypress-file-upload": "5.0.2",
"husky": "^4.3.8",
"jest": "^26.6.3",
"jest-canvas-mock": "^2.3.1",
"ts-jest": "^26.5.3",
"ts-node": "^9.1.1",
"tslint": "^6.1.3",
"typedoc": "0.20.32",
"typedoc-plugin-markdown": "^3.6.0",
"typescript": "^4.2.3",
"wait-on": "^5.2.1"
},
"peerDependencies": {
"core-js": "^3.3.5",
"regenerator-runtime": "^0.13.2"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
}
}