This repository was archived by the owner on Sep 29, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
95 lines (95 loc) · 2.33 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
{
"name": "@mujo/plugins",
"version": "0.4.3",
"description": "A set of utilities to create plugins in Mujo",
"main": "dist/index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/mujo-code/plugins.git"
},
"keywords": [
"react"
],
"files": [
"dist/**/*"
],
"author": "Jacob Lowe",
"license": "ISC",
"bugs": {
"url": "https://github.com/mujo-code/plugins/issues"
},
"homepage": "https://github.com/mujo-code/plugins#readme",
"scripts": {
"test": "npm run lint && jest",
"fmt": "prettier '{src,public}/**/*.js' --write",
"lint": "eslint '{src,public}/**/*.js'",
"build": "babel src --out-dir dist",
"prepublish": "npm run build"
},
"devDependencies": {
"@babel/cli": "^7.4.4",
"@babel/core": "^7.4.5",
"@babel/preset-env": "^7.4.5",
"@babel/preset-react": "^7.0.0",
"@babel/runtime": "^7.6.0",
"@emotion/core": "^10.0.14",
"@mujo/eslint-config": "^1.0.4",
"@mujo/ingress": "^0.1.0",
"@testing-library/react": "^9.1.4",
"babel-plugin-transform-runtime": "^6.23.0",
"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-dom": "^16.9.0",
"react-test-renderer": "^16.9.0"
},
"peerDependencies": {
"@emotion/core": ">=10.0.14",
"react": ">=16.8.6",
"@mujo/ingress": ">=0.1.0"
},
"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": [
"@babel/preset-env",
"@babel/preset-react"
]
},
"browserslist": [
"last 3 Chrome versions"
]
}