-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
60 lines (60 loc) · 1.63 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
{
"name": "redux-taxi",
"version": "1.2.0",
"description":
"Inform server-side rendering from the component level when dealing with asynchronous actions.",
"main": "lib/index",
"scripts": {
"compile": "rm -rf ./lib && babel -d lib/ src/",
"prepublish": "npm run test && npm run compile",
"test": "jest",
"precommit": "lint-staged"
},
"repository": "NYTimes/redux-taxi",
"keywords": [
"redux",
"react",
"taxi",
"server rendering",
"ssr",
"isomorphic",
"universal",
"nytimes"
],
"author": "Jeremy Gayed (https://github.com/tizmagik)",
"contributors": [
"Ivan Kravchenko (https://github.com/ivankravchenko)",
"Devorah Moskowitz (https://github.com/devorah)",
"Oleh Ziniak (https://github.com/oziniak)"
],
"license": "Apache 2.0",
"bugs": {
"url": "https://github.com/NYTimes/redux-taxi/issues"
},
"homepage": "https://github.com/NYTimes/redux-taxi#readme",
"devDependencies": {
"babel-cli": "^6.6.5",
"babel-core": "^6.7.4",
"babel-jest": "^21.2.0",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-plugin-transform-runtime": "^6.6.0",
"babel-polyfill": "^6.7.4",
"babel-preset-es2015": "^6.6.0",
"babel-preset-react": "^6.5.0",
"babel-preset-stage-0": "^6.5.0",
"babel-register": "^6.7.2",
"husky": "^0.14.3",
"jest": "^21.2.1",
"lint-staged": "^4.2.3",
"prettier": "^1.7.4",
"prop-types": "^15.5.8",
"react": "^15.5.4",
"react-dom": "^15.5.4"
},
"lint-staged": {
"*.{js,json}": [
"prettier --write --trailing-comma es5 --single-quote --tab-width 2",
"git add"
]
}
}