-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
77 lines (77 loc) · 2.25 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
{
"name": "react-loader-advanced",
"version": "1.7.1",
"description": "Show loader overlaying your component during async events.",
"main": "./lib/react-loader-advanced.js",
"types": "./index.d.ts",
"scripts": {
"build": "npm run lint && npm run build-src",
"build-src": "babel ./src --out-dir ./lib",
"build-demos": "NODE_ENV=production webpack -p --config webpack.demos.config.js",
"run-demos": "NODE_ENV=development webpack-dev-server --config webpack.demos.config.js --content-base demos/",
"lint": "eslint ./src ./demos",
"test": "karma start --single-run",
"prepublish": "npm run build",
"start": "npm run run-demos"
},
"keywords": [
"react",
"component",
"react-component",
"loader",
"loading",
"overlay",
"spinner"
],
"repository": {
"type": "git",
"url": "https://github.com/nygardk/react-loader-advanced"
},
"author": {
"name": "Klaus Nygård",
"email": "[email protected]",
"url": "http://klausnygard.fi"
},
"license": "MIT",
"devDependencies": {
"babel-cli": "6.26.0",
"babel-core": "6.26.0",
"babel-eslint": "8.0.1",
"babel-loader": "7.1.2",
"babel-plugin-transform-runtime": "6.23.0",
"babel-polyfill": "6.26.0",
"babel-preset-airbnb": "2.4.0",
"babel-preset-es2015": "6.24.1",
"babel-preset-react": "6.24.1",
"babel-preset-stage-0": "6.24.1",
"babel-register": "6.26.0",
"eslint": "4.8.0",
"eslint-config-airbnb": "15.1.0",
"eslint-loader": "1.9.0",
"eslint-plugin-import": "2.7.0",
"eslint-plugin-jasmine": "2.8.4",
"eslint-plugin-jsx-a11y": "6.0.2",
"eslint-plugin-react": "7.4.0",
"jasmine-core": "2.8.0",
"karma": "1.7.1",
"karma-jasmine": "1.1.0",
"karma-phantomjs-launcher": "1.0.4",
"karma-sourcemap-loader": "0.3.7",
"karma-webpack": "2.0.4",
"phantomjs-prebuilt": "2.1.15",
"react": "15.5.0",
"react-dom": "15.5.0",
"react-hot-loader": "1.3.1",
"webpack": "3.6.0",
"webpack-dev-server": "2.9.1"
},
"dependencies": {
"babel-runtime": "^6.10.0",
"prop-types": "^15.5.6",
"react-transition-group": "^1.2.0",
"wolfy87-eventemitter": "^5.2.2"
},
"peerDependencies": {
"react": "^0.13.0 || ^0.14.0 || ^15.0.0 || ^16.0.0"
}
}