This repository has been archived by the owner on Jul 10, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
74 lines (74 loc) · 1.8 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
{
"name": "@mujo/ingress",
"version": "0.1.1",
"description": "React Components for rendering components in remote places",
"main": "dist/index.js",
"scripts": {
"test": "npm run lint && jest",
"fmt": "prettier '{src,public}/**/*.js' --write",
"lint": "eslint '{src,public}/**/*.js'",
"build": "babel src --out-dir dist"
},
"keywords": [
"react"
],
"author": "Jacob Lowe",
"license": "ISC",
"devDependencies": {
"@babel/cli": "^7.4.4",
"@babel/core": "^7.4.5",
"@babel/preset-env": "^7.4.5",
"@babel/preset-react": "^7.0.0",
"@emotion/core": "^10.0.14",
"@mujo/eslint-config": "^1.0.4",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-react-app": "^9.0.1",
"eslint": "^5.16.0",
"jest": "^24.9.0",
"jest-environment-jsdom-fourteen": "0.1.0",
"jest-image-snapshot": "^2.9.0",
"jest-resolve": "24.9.0",
"jest-watch-typeahead": "^0.3.1",
"prettier": "^1.17.1",
"react": "^16.9.0",
"react-test-renderer": "^16.9.0"
},
"peerDependencies": {
"react": ">=16.9"
},
"jest": {
"collectCoverageFrom": [
"src/**/*.{js}"
],
"testMatch": [
"<rootDir>/src/**/__tests__/**/*.js",
"<rootDir>/src/**/*.{spec,test}.js"
],
"testEnvironment": "jest-environment-jsdom-fourteen",
"transform": {
"^.+\\.(js|jsx|ts|tsx)$": "<rootDir>/node_modules/babel-jest"
},
"transformIgnorePatterns": [
"[/\\\\]node_modules[/\\\\].+\\.(js|jsx|ts|tsx)$"
],
"modulePaths": [],
"moduleFileExtensions": [
"web.js",
"js",
"web.ts",
"json",
"web.jsx",
"jsx",
"node"
],
"watchPlugins": [
"jest-watch-typeahead/filename",
"jest-watch-typeahead/testname"
]
},
"babel": {
"presets": [
"react-app"
]
}
}