-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
78 lines (78 loc) · 1.89 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
{
"name": "react-thanos",
"version": "2.0.0",
"description": "React hooks implementation of Google's \"Thanos\" easter egg",
"directories": {
"lib": "lib"
},
"main": "dist/index.js",
"module": "dist/index.es.js",
"source": "lib/index.js",
"scripts": {
"clean": "rimraf dist",
"bundle": "rollup -c",
"build": "npm-run-all clean bundle",
"release": "npm run build && np",
"test": "jest"
},
"engines": {
"node": ">=15.0.0"
},
"files": [
"dist",
"readme.md",
"license.md"
],
"repository": {
"type": "git",
"url": "git+https://github.com/codeshifu/react-thanos.git"
},
"keywords": [
"thanos",
"snap",
"gauntlet",
"decimation",
"react",
"google"
],
"author": "Luqman Olushi <olushilukmon03@gmail.com> (https://codeshifu.github.io/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/codeshifu/react-thanos/issues"
},
"homepage": "https://github.com/codeshifu/react-thanos#readme",
"devDependencies": {
"@babel/cli": "7.15.7",
"@babel/core": "7.4.4",
"@babel/plugin-transform-runtime": "7.15.8",
"@babel/preset-env": "7.4.4",
"@babel/preset-react": "7.0.0",
"@rollup/plugin-babel": "5.3.0",
"@rollup/plugin-node-resolve": "13.0.5",
"@testing-library/jest-dom": "^5.14.1",
"@testing-library/react": "^12.1.2",
"babel-jest": "^26.6.3",
"jest": "^27.2.5",
"np": "7.5.0",
"npm-run-all": "4.1.5",
"react": "16.9",
"react-dom": "16.9",
"react-test-renderer": "16.8",
"regenerator-runtime": "^0.13.9",
"rimraf": "2.6.3",
"rollup": "2.58.0",
"rollup-plugin-peer-deps-external": "2.2.4",
"rollup-plugin-rebase": "3.6.9"
},
"peerDependencies": {
"react": "16.9",
"react-dom": "16.9"
},
"jest": {
"moduleNameMapper": {
"\\.(jpg|jpeg|png|gif|eot|otf|webp|svg|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga)$": "<rootDir>/__mocks__/fileMock.js",
"\\.(css|less)$": "<rootDir>/__mocks__/fileMock.js"
},
"testEnvironment": "jsdom"
}
}