-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
39 lines (39 loc) · 997 Bytes
/
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
{
"name": "calipers-jpeg",
"version": "3.0.0",
"description": "JPEG plugin for calipers.",
"main": "lib/index.js",
"scripts": {
"test": "NODE_ENV=test nyc mocha -- test --recursive --timeout 15000",
"enforce": "nyc check-coverage --statement 100 --branch 100 --function 100 --lines 100",
"lint": "eslint .",
"lint:fix": "eslint --fix ."
},
"repository": {
"type": "git",
"url": "https://github.com/calipersjs/calipers-jpeg.git"
},
"keywords": [
"image",
"size",
"jpeg"
],
"author": "Marcus Gartner",
"license": "MIT",
"bugs": {
"url": "https://github.com/calipersjs/calipers/issues"
},
"homepage": "https://github.com/calipersjs/calipers-jpeg",
"devDependencies": {
"chai": "^4.3.2",
"chai-as-promised": "^7.1.1",
"eslint": "^7.13.0",
"eslint-config-lob": "^5.2.0",
"nyc": "^15.1.0",
"mocha": "^6.2.2",
"mocha-lcov-reporter": "^1.3.0"
},
"peerDependencies": {
"calipers": "^2 || ^3"
}
}