-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
129 lines (129 loc) · 3.25 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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
{
"name": "optimusimg",
"version": "0.0.0-development",
"description": "A Node.js module for optimizing images in build and runtime",
"main": "build/index.js",
"types": "build/index.d.ts",
"bin": {
"analyse-images": "./bin/analyse_images.js",
"prepare-progressive-images": "./bin/prepare_progressive_images.js"
},
"scripts": {
"build:javascript-version": "rimraf build && tsc",
"build:production-runtime": "rimraf dist && webpack --mode=production",
"test": "jest --coverage",
"lint": "tslint --project \"tsconfig.lint.json\"",
"report-coverage": "codecov",
"prepare-for-release": "npm run lint && npm run test && npm run build:javascript-version && npm run build:production-runtime",
"commit": "npm run lint && npm run test && git-cz",
"semantic-release": "semantic-release"
},
"repository": {
"type": "git",
"url": "https://github.com/lukaVarga/OptimusIMG.git"
},
"keywords": [
"image",
"image-optimisation",
"image-optimization",
"image-analysis",
"images",
"typescript",
"javascript",
"optimisation",
"optimization",
"analysis"
],
"author": "Luka Varga <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/lukaVarga/OptimusIMG/issues"
},
"homepage": "https://github.com/lukaVarga/OptimusIMG#readme",
"files": [
"src/**/*",
"build/**/*",
"dist/**/*",
"bin/**/*"
],
"devDependencies": {
"@types/jest": "^28.1.3",
"@types/node": "^18.0.0",
"commitizen": "^4.2.4",
"cz-conventional-changelog": "^3.3.0",
"jest": "^28.1.1",
"rimraf": "^3.0.2",
"semantic-release": "^21.0.1",
"sharp": "^0.32.6",
"ts-jest": "^28.0.5",
"ts-loader": "^9.3.1",
"tslint": "^5.11.0",
"typescript": "^4.7.4",
"webpack": "^5.73.0",
"webpack-cli": "^4.10.0"
},
"jest": {
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$",
"testPathIgnorePatterns": [
"/node_modules/",
"tests/__tests__/watch.spec.ts"
],
"coverageReporters": [
"text",
"json",
"lcov"
],
"coverageDirectory": "./coverage",
"collectCoverageFrom": [
"src/**/*.tsx",
"src/**/*.ts"
],
"coverageThreshold": {
"global": {
"branches": 100,
"functions": 100,
"lines": 100,
"statements": -10
}
},
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
],
"verbose": true,
"resetMocks": true,
"testEnvironment": "jsdom"
},
"czConfig": {
"path": "node_modules/cz-conventional-changelog"
},
"release": {
"branch": "master",
"verifyConditions": [
"@semantic-release/npm",
"@semantic-release/github"
],
"analyzeCommits": "@semantic-release/commit-analyzer",
"generateNotes": "@semantic-release/release-notes-generator",
"prepare": "@semantic-release/npm",
"publish": [
"@semantic-release/npm",
"@semantic-release/github"
]
},
"dependencies": {
"babel-runtime": "^6.26.0",
"codecov": "^3.8.3",
"jest-environment-jsdom": "^28.1.1",
"jest-plugin-fs": "^2.9.0",
"jimp": "^0.16.1",
"promptly": "^3.2.0"
}
}