-
Notifications
You must be signed in to change notification settings - Fork 74
/
package.json
46 lines (46 loc) · 1.22 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
{
"name": "tinify",
"version": "1.7.1",
"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 <[email protected]>",
"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": {
"promise-nodeify": ">= 0.1",
"proxying-agent": ">= 2.1"
},
"devDependencies": {
"@types/node": "~10.3.1",
"chai": "^2.3.0",
"mocha": "^2.2.5",
"nock": "^13.2.9",
"semver": "*",
"tmp": "^0.0.26",
"tslint": "^5.10.0",
"typescript": "^2.9.2"
}
}