forked from theKashey/react-imported-component
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
85 lines (85 loc) · 2.42 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
{
"name": "react-imported-component",
"version": "5.4.0",
"description": "I will import your component, and help to handle it",
"main": "dist/index.js",
"types": "module.d.ts",
"scripts": {
"build:babel": "babel src -d dist",
"build:flow": "cp ./module.js.flow ./dist/index.js.flow",
"build": "yarn build:babel && yarn build:flow",
"test": "npm run test:pick -- '_tests/**/*spec.js'",
"test:pick": "BABEL_ENV=test mocha --compilers js:babel-core/register -r jsdom-global/register",
"prepublish": "npm run build",
"lint": "eslint src tests",
"lint:fix": "eslint src tests --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/theKashey/react-hot-component-loader.git"
},
"bin": {
"imported-components": "./bin/imported-components"
},
"keywords": [
"react-hot-loader",
"loader",
"import",
"async",
"ssr",
"code splitting",
"hmr"
],
"peerDependencies": {
"react": "^15.0.0 || ^16.0.0"
},
"author": "theKashey <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/theKashey/react-hot-component-loader/issues"
},
"homepage": "https://github.com/theKashey/react-hot-component-loader#readme",
"devDependencies": {
"@types/react": "^16.4.0",
"babel-cli": "^6.24.1",
"babel-core": "^6.25.0",
"babel-eslint": "^8.2.3",
"babel-plugin-dynamic-import-node": "^1.2.0",
"babel-plugin-syntax-dynamic-import": "^6.18.0",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.24.1",
"chai": "^4.1.0",
"chai-enzyme": "^1.0.0-beta.0",
"enzyme": "^3.7.0",
"enzyme-adapter-react-16": "^1.6.0",
"eslint": "^4.2.0",
"eslint-plugin-mocha": "^5.0.0",
"eslint-plugin-react": "^7.7.0",
"flowgen": "^1.2.2",
"jsdom": "11.11.0",
"jsdom-global": "3.0.2",
"mocha": "^5.2.0",
"nyc": "^12.0.2",
"react": "^16.6.0",
"react-deep-force-update": "^2.1.1",
"react-dom": "^16.6.0",
"react-hot-loader": "^4.1.2",
"react-test-renderer": "^16.6.0",
"sinon": "^5.0.10"
},
"dependencies": {
"crc-32": "^1.2.0",
"detect-node": "^2.0.3",
"prop-types": "15.6.2",
"scan-directory": "^1.0.0"
},
"size-limit": [
{
"path": "dist/index.js",
"limit": "3.5 KB"
}
]
}