-
Notifications
You must be signed in to change notification settings - Fork 44
/
Copy pathpackage.json
48 lines (48 loc) · 1.23 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
{
"name": "tinify",
"version": "1.8.0",
"description": "Node.js client for the Tinify API. Tinify compresses your images intelligently. Read more at https://tinify.com.",
"keywords": [
"tinify",
"tinypng",
"tinyjpg",
"compress",
"optimize",
"images",
"api"
],
"homepage": "https://tinify.com/developers",
"license": "MIT",
"author": "Rolf Timmermans <rolftimmermans@voormedia.com>",
"repository": {
"type": "git",
"url": "https://github.com/tinify/tinify-nodejs.git"
},
"files": [
"lib"
],
"bugs:": "https://github.com/tinify/tinify-nodejs/issues",
"scripts": {
"test": "rm -rf lib/**.{js,ts} && tsc && tsc --noEmit test/tinify-typing-test.ts && mocha --reporter dot test/*-test.js",
"integration": "rm -rf lib/**.{js,ts} && tsc && mocha --reporter dot test/integration.js"
},
"engines": {
"node": ">= 6.0"
},
"main": "lib/index.js",
"types": "lib/index.d.ts",
"dependencies": {
"https-proxy-agent": "^7.0.6",
"promise-nodeify": ">= 0.1"
},
"devDependencies": {
"@types/node": "22.13.4",
"chai": "^2.3.0",
"mocha": "^2.2.5",
"nock": "^13.2.9",
"semver": "*",
"tmp": "^0.0.26",
"tslint": "^5.10.0",
"typescript": "^5.7.3"
}
}