forked from cameronbourke/react-async-poll
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.33 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
{
"name": "react-async-poll",
"version": "1.0.0",
"description": "Polling for data in React made easy.",
"keywords": [
"react-component",
"react",
"async",
"polling"
],
"main": "dist/index.js",
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "https://github.com/IxpertaSolutions/react-async-poll.git"
},
"scripts": {
"start": "node server",
"compile": "babel src --out-dir dist",
"prepublish": "npm run compile",
"test": "tape -r babel-register ./src/**/*.spec.js | tap-spec"
},
"author": "Cameron Bourke <[email protected]> (http://cameronbourke.com/)",
"license": "MIT",
"devDependencies": {
"autoprefixer": "6.3.6",
"babel-cli": "6.7.7",
"babel-core": "6.7.7",
"babel-loader": "6.2.4",
"babel-preset-es2015": "6.6.0",
"babel-preset-react": "6.5.0",
"babel-preset-stage-0": "6.5.0",
"eslint": "2.8.0",
"eslint-config-keystone": "2.2.0",
"eslint-plugin-react": "5.0.1",
"expect": "1.18.0",
"express": "4.13.4",
"postcss-loader": "0.8.2",
"react-dom": "15.0.1",
"tap-spec": "4.1.1",
"tape": "4.5.1",
"webpack": "1.13.0",
"webpack-dev-middleware": "1.6.1",
"webpack-hot-middleware": "2.10.0"
},
"peerDependency": {
"react": ">0.14.0"
},
"dependencies": {
"promise": "7.1.1"
}
}