-
Notifications
You must be signed in to change notification settings - Fork 55
/
Copy pathpackage.json
58 lines (58 loc) · 1.59 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
{
"name": "react-async-script-loader",
"version": "0.2.3",
"description": "A decorator for script lazy loading on react component",
"main": "lib/index.js",
"scripts": {
"build": "babel src --out-dir lib",
"prepublish": "npm run build",
"test": "karma start"
},
"repository": {
"type": "git",
"url": "git+https://github.com/leozdgao/react-script-loader.git"
},
"keywords": [
"react",
"reactjs",
"react-component"
],
"author": "leozdgao",
"license": "MIT",
"bugs": {
"url": "https://github.com/leozdgao/react-script-loader/issues"
},
"homepage": "https://github.com/leozdgao/react-script-loader#readme",
"peerDependencies": {
"react": "^15.0.1 || ^16.0.0"
},
"devDependencies": {
"babel-cli": "^6.1.18",
"babel-eslint": "^4.1.5",
"babel-loader": "~6.2.4",
"babel-plugin-syntax-class-properties": "^6.1.18",
"babel-plugin-transform-class-properties": "^6.1.20",
"babel-preset-es2015": "^6.1.18",
"babel-preset-react": "^6.1.18",
"babel-preset-stage-0": "^6.1.18",
"chai": "~3.5.0",
"eslint": "^1.9.0",
"karma": "~0.13.22",
"karma-chai": "~0.1.0",
"karma-mocha": "~0.2.2",
"karma-mocha-reporter": "~2.0.0",
"karma-phantomjs-launcher": "~1.0.0",
"karma-sourcemap-loader": "~0.3.7",
"karma-webpack": "~1.7.0",
"mocha": "~2.4.5",
"phantomjs-prebuilt": "~2.1.7",
"prop-types": "~15.5.8",
"react": "^15.0.1",
"react-addons-test-utils": "^15.0.1",
"react-dom": "^15.0.1",
"webpack": "~1.12.14"
},
"dependencies": {
"hoist-non-react-statics": "^1.0.3"
}
}