-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
82 lines (82 loc) · 2.13 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
{
"name": "imagecache-sharp",
"version": "0.0.0-development",
"description": "Lightweight image generation module based on sharp and inspired by Drupal's image styles.",
"keywords": [
"sharp",
"imagecache",
"image",
"processing",
"thumbnail"
],
"author": {
"name": "Alexandru Badiu",
"email": "andu@ctrlz.ro",
"url": "http://alexandrubadiu.ro"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"docs": "typedoc --entryPoints src/imagecache.ts",
"test": "jest",
"test:watch": "jest --watch",
"ts-node": "ts-node",
"lint": "eslint src/ --ext .js,.jsx,.ts,.tsx",
"build": "tsc -p tsconfig.json",
"clean": "rm -rf dist build",
"watch": "tsc -p tsconfig.json --watch",
"commit": "git-cz",
"semantic-release": "semantic-release"
},
"homepage": "https://github.com/voidberg/imagecache-sharp",
"repository": {
"type": "git",
"url": "https://github.com/voidberg/imagecache-sharp.git"
},
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/voidberg/imagecache-sharp/issues"
},
"readmeFilename": "README.md",
"release": {
"generateNotes": "./node_modules/@semantic-release/release-notes-generator",
"branches": [
"main",
"next",
"beta"
]
},
"dependencies": {
"sharp": "^0.32.6",
"string": "3.3.3"
},
"devDependencies": {
"@semantic-release/release-notes-generator": "^10.0.3",
"@types/jest": "^26.0.23",
"@types/jest-image-snapshot": "^4.3.0",
"@types/node": "^15.0.1",
"@types/sharp": "^0.28.0",
"@types/string": "^0.0.30",
"@typescript-eslint/eslint-plugin": "^4.22.0",
"@typescript-eslint/parser": "^4.22.0",
"commitizen": "1.0.5",
"cz-conventional-changelog": "3.3.0",
"eslint": "^7.25.0",
"husky": "^0.13.4",
"jest": "^26.6.3",
"jest-image-snapshot": "^4.5.0",
"semantic-release": "^19.0.3",
"ts-jest": "^26.5.5",
"ts-node": "^9.1.1",
"typedoc": "^0.20.36",
"typescript": "^4.2.4"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}