forked from leozdgao/react-async-script-loader
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.69 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.69 KB
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
{
"name": "react-lazy-script-loader",
"version": "0.3.3",
"description": "A decorator for script lazy loading on react component",
"main": "lib/index.js",
"private": false,
"scripts": {
"build": "babel src --out-dir lib",
"prepublish": "npm run build",
"test": "karma start"
},
"repository": {
"type": "git",
"url": "git+https://github.com/andrewlowther/react-async-script-loader.git"
},
"keywords": [
"react",
"reactjs",
"react-component"
],
"author": "andrewlowther",
"license": "MIT",
"bugs": {
"url": "https://github.com/AndrewLowther/react-async-script-loader/issues"
},
"homepage": "https://github.com/AndrewLowther/react-async-script-loader#readme",
"peerDependencies": {
"react": "^16.0.0"
},
"devDependencies": {
"@babel/cli": "^7.2.0",
"@babel/core": "^7.2.0",
"@babel/plugin-proposal-class-properties": "^7.2.1",
"@babel/plugin-syntax-class-properties": "^7.2.0",
"@babel/preset-env": "^7.2.0",
"@babel/preset-react": "^7.0.0",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^10.0.1",
"babel-loader": "^8.0.4",
"chai": "^4.2.0",
"eslint": "^5.9.0",
"karma": "^3.1.3",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^2.2.0",
"karma-mocha": "^1.3.0",
"karma-mocha-reporter": "^2.2.5",
"karma-phantomjs-launcher": "^1.0.4",
"karma-sourcemap-loader": "^0.3.7",
"karma-webpack": "^3.0.5",
"mocha": "^5.2.0",
"phantomjs-prebuilt": "^2.1.16",
"prop-types": "^15.6.2",
"react": "^16.6.3",
"react-addons-test-utils": "^15.0.1",
"react-dom": "^16.6.3",
"webpack": "^4.27.1"
},
"dependencies": {
"hoist-non-react-statics": "^3.2.1"
}
}