-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
39 lines (39 loc) · 991 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": "lcs-image-diff",
"version": "3.0.0",
"description": "A JavaScript library to diff two images. Uses the Longest-Common-Subsequence algorithm to allow content to shift.",
"main": "src/index.js",
"files": [
"src"
],
"author": "Henric Trotzig <henric.trotzig@happo.io>",
"contributors": [
"Joe Lencioni <joe.lencioni@happo.io> (https://github.com/lencioni)"
],
"repository": {
"type": "git",
"url": "https://github.com/happo/lcs-image-diff.git"
},
"license": "MIT",
"scripts": {
"start-server": "http-server -p 5411 -c1 src/__tests__/test-images",
"test-ci": "yarn start-server & yarn test",
"test": "jest"
},
"prettier": {
"trailingComma": "all",
"tabWidth": 2,
"semi": true,
"singleQuote": true,
"printWidth": 80,
"arrowParens": "avoid"
},
"dependencies": {
"imagetracerjs": "^1.2.5"
},
"devDependencies": {
"http-server": "^14.1.1",
"jest": "^29.7.0",
"jimp": "^0.8.5"
}
}