-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
61 lines (61 loc) · 1.48 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
{
"name": "react-pixelate",
"version": "0.0.1",
"description": "React library to pixelate images or elements",
"title": "React Pixelate",
"keywords": [
"react",
"react-component",
"pixel",
"pixelate",
"react-pixelate",
"blur element"
],
"main": "build/index.js",
"scripts": {
"build": "rollup -c",
"lint": "standard",
"format": "prettier-standard --format",
"test": "jest --coverage"
},
"author": "Tony Nguyen [email protected]",
"repository": {
"type": "git",
"url": "https://github.com/tonynguyenit18/react-pixelate"
},
"homepage": "https://github.com/tonynguyenit18/react-pixelate#readme",
"bugs": {
"url": "https://github.com/tonynguyenit18/react-pixelate/issues"
},
"license": "ISC",
"devDependencies": {
"@types/jest": "^26.0.13",
"@types/react": "^16.9.49",
"@types/react-dom": "^16.9.8",
"jest": "^26.4.2",
"prettier": "^2.1.1",
"rollup": "^2.26.11",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-peer-deps-external": "^2.2.3",
"rollup-plugin-typescript2": "^0.27.2",
"standard": "^14.3.4",
"standard-prettier": "^1.0.1",
"ts-jest": "^26.3.0",
"typescript": "^3.9.7"
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "node"
},
"standard": {
"ignore": [
"node_modules/",
"build/"
]
},
"peerDependencies": {
"react": "^16.13.1",
"react-dom": "^16.13.1"
}
}