This repository has been archived by the owner on Dec 7, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
79 lines (79 loc) · 2.04 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "ssim.js",
"description": "JavaScript implementation of the SSIM algorithm",
"main": "dist/index",
"typings": "dist/index",
"browser": "dist/ssim.web",
"version": "0.0.0-semantically-released",
"scripts": {
"format-all": "git ls-files {src,spec}*.{ts,js,json} | xargs yarn format",
"format": "prettier --write --single-quote --no-semi --trailing-comma es5",
"commit": "git-cz",
"test": "jest --testTimeout=500000",
"lint": "eslint .",
"build": "rm -rf dist && tsc && webpack --mode=production",
"semantic-release": "semantic-release"
},
"repository": {
"url": "https://github.com/obartra/ssim.git",
"type": "git"
},
"keywords": [
"ssim",
"mssim",
"ssim_map",
"image",
"compare",
"structural",
"similarity",
"processing"
],
"author": "Oscar Bartra",
"license": "MIT",
"bugs": {
"url": "https://github.com/obartra/ssim/issues"
},
"files": [
"package.json",
"README.md",
"LICENSE",
"src",
"dist"
],
"homepage": "https://github.com/obartra/ssim#readme",
"devDependencies": {
"@semantic-release/commit-analyzer": "8.0.1",
"@semantic-release/github": "7.1.1",
"@semantic-release/npm": "7.0.6",
"@types/jest": "26.0.14",
"@types/node": "13.11.1",
"benchmark": "2.1.4",
"canvas": "2.6.1",
"commitizen": "4.2.1",
"core-js": "3.6.5",
"cz-conventional-changelog": "3.3.0",
"eslint": "7.11.0",
"eslint-config-airbnb": "18.2.0",
"eslint-config-prettier": "6.13.0",
"eslint-plugin-import": "2.22.1",
"eslint-plugin-jsx-a11y": "6.3.1",
"eslint-plugin-react": "7.21.4",
"image-type": "4.1.0",
"jest": "26.6.0",
"nodemon": "2.0.5",
"prettier": "2.1.2",
"request": "2.88.2",
"semantic-release": "19.0.3",
"semantic-release-cli": "5.4.0",
"ts-jest": "26.4.1",
"ts-loader": "8.0.5",
"typescript": "4.0.3",
"webpack": "5.76.0",
"webpack-cli": "4.0.0"
},
"config": {
"commitizen": {
"path": "node_modules/cz-conventional-changelog"
}
}
}