-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
66 lines (66 loc) · 1.86 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
{
"name": "@libp2p/observer-catalogue",
"version": "1.1.0",
"description": "Components to create a browsable catalogue of libp2p Observer widgets",
"author": "AlanSl <[email protected]>",
"homepage": "https://libp2p.github.io/libp2p-observer",
"license": "MIT",
"main": "./build/index.js",
"module": "./index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/libp2p/observer-toolkit.git"
},
"scripts": {
"prepare": "webpack",
"test": "CI=true jest",
"test:watch": "jest --watch",
"update-snapshots": "npm run test -- -u"
},
"peerDependencies": {
"@libp2p/observer-data": "^1.1.0",
"@libp2p/observer-samples": "^1.1.0",
"@libp2p/observer-sdk": "^1.1.0",
"@libp2p/observer-shell": "^1.1.0",
"react": "^16.11.0",
"react-dom": "^16.11.0",
"styled-components": "^4.4.0"
},
"dependencies": {
"react-markdown": "^4.2.2",
"react-router-dom": "^5.2.0"
},
"devDependencies": {
"@babel/preset-env": "^7.7.6",
"@babel/preset-react": "^7.7.4",
"@testing-library/react": "^9.4.0",
"babel-jest": "^24.9.0",
"jest": "^24.9.0",
"jest-styled-components": "^6.3.4",
"peer-deps-externals-webpack-plugin": "^1.0.4",
"raw-loader": "^3.1.0",
"webpack-cli": "^3.3.10"
},
"jest": {
"setupFilesAfterEnv": [
"<rootDir>/../../__jest__/setupTest.js"
],
"moduleNameMapper": {
"\\.(css|less)$": "<rootDir>/../../__jest__/styleMock.js"
},
"transform": {
"\\.(mock|jpg|jpeg|png|gif|eot|otf|webp|svg|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga)$": "<rootDir>/../../__jest__/filePaths.js",
"\\.js$": [
"babel-jest",
{
"rootMode": "upward"
}
]
},
"coveragePathIgnorePatterns": [
"/node_modules/",
"/build/"
]
},
"gitHead": "9a1f73f71e98b6e8f27ac26133c7fc63e1fc8f7d"
}