-
Notifications
You must be signed in to change notification settings - Fork 17
/
package.json
53 lines (53 loc) · 1.27 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
{
"name": "calipers",
"version": "3.0.0",
"description": "The fastest Node.js library for measuring image and PDF dimensions.",
"main": "lib/index.js",
"scripts": {
"bench": "node bench/index.js",
"bench:ts": "ts-node bench/index.ts",
"b": "tsc bench/test",
"build": "tsc",
"test": "jest",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"lint:file": "eslint"
},
"repository": {
"type": "git",
"url": "https://github.com/calipersjs/calipers.git"
},
"keywords": [
"image",
"size",
"pdf",
"png",
"jpeg",
"gif",
"bmp",
"svg",
"webp"
],
"author": "Marcus Gartner",
"license": "MIT",
"bugs": {
"url": "https://github.com/calipersjs/calipers/issues"
},
"homepage": "https://github.com/calipersjs/calipers",
"devDependencies": {
"@types/jest": "^26.0.15",
"@typescript-eslint/eslint-plugin": "^4.8.1",
"@typescript-eslint/parser": "^4.8.1",
"benny": "^3.7.1",
"calipers-png": "2.1.0",
"eslint": "^7.13.0",
"eslint-config-standard": "^16.0.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"jest": "26.x.x",
"ts-jest": "^26.4.4",
"ts-node": "^9.0.0",
"typescript": "^4.0.5"
}
}