-
Notifications
You must be signed in to change notification settings - Fork 48
/
package.json
72 lines (72 loc) · 1.97 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
{
"name": "async-props",
"version": "0.3.2",
"description": "Co-located component data fetching for React Router",
"main": "lib/AsyncProps",
"repository": {
"type": "git",
"url": "https://github.com/rackt/async-props.git"
},
"bugs": "https://github.com/rackt/async-props/issues",
"scripts": {
"build": "babel ./modules -d lib --ignore '__tests__'",
"build-umd": "NODE_ENV=production webpack modules/AsyncProps.js umd/AsyncProps.js",
"build-min": "NODE_ENV=production webpack -p modules/AsyncProps.js umd/AsyncProps.min.js",
"lint": "eslint modules",
"start": "babel-node example/server.js",
"test": "npm run lint && karma start",
"postinstall": "node ./npm-scripts/postinstall.js"
},
"authors": [
"Ryan Florence"
],
"license": "MIT",
"peerDependencies": {
"react": "*",
"react-router": "^2.0.1"
},
"devDependencies": {
"babel-cli": "^6.6.5",
"babel-core": "^6.7.0",
"babel-eslint": "^3.1.23",
"babel-loader": "^6.2.4",
"babel-preset-es2015": "^6.6.0",
"babel-preset-react": "^6.5.0",
"babel-preset-stage-1": "^6.5.0",
"eslint": "1.4.1",
"eslint-config-rackt": "1.0.0",
"eslint-plugin-react": "3.3.2",
"expect": "^1.12.0",
"express": "^4.13.3",
"form-serialize": "^0.7.0",
"gzip-size": "^3.0.0",
"history": "^1.13.1",
"karma": "^0.13.3",
"karma-browserstack-launcher": "^0.1.3",
"karma-chrome-launcher": "^0.2.0",
"karma-firefox-launcher": "^0.1.6",
"karma-mocha": "^0.2.0",
"karma-mocha-reporter": "^1.0.4",
"karma-sourcemap-loader": "^0.3.5",
"karma-webpack": "^1.7.0",
"mocha": "^2.0.1",
"pretty-bytes": "^2.0.1",
"react": "^0.14.2",
"react-dom": "^0.14.2",
"react-router": "^2.0.1",
"rimraf": "^2.4.2",
"webpack": "^1.12.6",
"webpack-dev-middleware": "^1.2.0"
},
"tags": [
"react",
"react router",
"data"
],
"keywords": [
"react",
"react router",
"data"
],
"dependencies": {}
}