-
Notifications
You must be signed in to change notification settings - Fork 48
/
Copy pathpackage.json
52 lines (52 loc) · 1.47 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
{
"name": "react-preload",
"version": "0.6.0",
"description": "A component to manage preloading media before showing a component",
"main": "lib/index.js",
"scripts": {
"start": "./node_modules/.bin/webpack-dev-server --mode development --content-base examples/",
"build": "./scripts/build.sh",
"lint": "./node_modules/.bin/eslint -c .eslintrc modules/*",
"prepublish": "npm run build"
},
"repository": {
"type": "git",
"url": "[email protected]:sambernard/react-preload.git"
},
"keywords": [
"react",
"preload",
"preloader",
"loader",
"react-component"
],
"author": "Sam Bernard <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/sambernard/react-preload/issues"
},
"homepage": "https://github.com/sambernard/react-preload",
"peerDependencies": {
"prop-types": "^15.0.0",
"react": "^15.0.0"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-eslint": "^8.2.6",
"babel-loader": "^7.1.5",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"eslint": "^5.3.0",
"eslint-config-airbnb": "^17.0.0",
"eslint-plugin-import": "^2.13.0",
"eslint-plugin-jsx-a11y": "^6.1.1",
"eslint-plugin-react": "^7.10.0",
"react-dom": "^15.0.0",
"react-test-renderer": "^16.4.2",
"webpack": "^4.16.5",
"webpack-cli": "^3.1.0",
"webpack-dev-server": "^3.1.5"
}
}