forked from LuanEdCosta/copy-image-clipboard
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
71 lines (71 loc) · 1.88 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
{
"name": "copy-image-clipboard",
"version": "2.0.1",
"main": "dist/index.js",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"license": "MIT",
"author": "Luan Eduardo da Costa",
"description": "Lightweight library to copy png and jpg images to clipboard",
"homepage": "https://github.com/LuanEdCosta/copy-image-clipboard",
"bugs": {
"url": "https://github.com/LuanEdCosta/copy-image-clipboard/issues"
},
"repository": {
"directory": "https://github.com/LuanEdCosta/copy-image-clipboard.git",
"type": "git"
},
"keywords": [
"copy",
"image",
"clipboard",
"png",
"jpg"
],
"scripts": {
"test": "jest",
"dev": "rollup --config -w",
"build": "yarn clean:dist && tsc && rollup --config && exit 0",
"prepublishOnly": "yarn build",
"prepare": "husky install",
"fix:all": "prettier --write .",
"check:files": "npm pack --dry-run",
"clean:dist": "rimraf dist",
"clean:modules": "rimraf node_modules"
},
"lint-staged": {
"*": "prettier --write --ignore-unknown",
"*.{js,jsx,ts,tsx}": "jest --watchAll=false --findRelatedTests",
"{src/index.ts,package.json}": [
"yarn build",
"git add dist"
]
},
"devDependencies": {
"@babel/core": "^7.15.5",
"@babel/preset-env": "^7.15.4",
"@babel/preset-typescript": "^7.15.0",
"@rollup/plugin-typescript": "^8.2.5",
"@types/jest": "^27.0.1",
"@types/node": "^16.7.10",
"babel-jest": "^27.1.0",
"husky": "^7.0.2",
"jest": "^27.1.0",
"jest-canvas-mock": "^2.3.1",
"lint-staged": "^11.1.2",
"prettier": "^2.3.2",
"rimraf": "^3.0.2",
"rollup": "^2.56.3",
"rollup-plugin-cleanup": "^3.2.1",
"rollup-plugin-terser": "^7.0.2",
"ts-node": "^10.2.1",
"typescript": "^4.5.0-dev.20210905"
},
"files": [
"dist/*",
"package.json",
"LICENSE",
"README.md",
"CHANGELOG.md"
]
}