Skip to content

Commit b78ad50

Browse files
committed
Update dependencies
1 parent d25e262 commit b78ad50

File tree

2 files changed

+17
-7
lines changed

2 files changed

+17
-7
lines changed

package.json

Lines changed: 10 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "react-intl-native",
3-
"version": "1.0.5",
3+
"version": "1.0.6",
44
"description": "Convenience components for react-intl's `format*` API in React Native",
55
"main": "dist/react-intl-native.js",
66
"jsnext:main": "dist/react-intl-native.es2015.js",
@@ -53,12 +53,13 @@
5353
},
5454
"homepage": "https://github.com/frostney/react-intl-native#readme",
5555
"dependencies": {
56+
"react": "^0.14.8",
5657
"react-intl": "^2.0.0-rc-1",
5758
"react-native": "^0.23.0"
5859
},
5960
"devDependencies": {
60-
"ava": "^0.13.0",
61-
"babel-eslint": "^6.0.2",
61+
"ava": "^0.14.0",
62+
"babel-eslint": "^6.0.4",
6263
"babel-plugin-transform-class-properties": "^6.6.0",
6364
"babel-plugin-transform-export-extensions": "^6.5.0",
6465
"babel-polyfill": "^6.7.4",
@@ -68,11 +69,13 @@
6869
"babel-register": "^6.7.2",
6970
"codecov": "^1.0.1",
7071
"enzyme": "^2.2.0",
71-
"eslint": "^2.6.0",
72-
"eslint-config-airbnb": "^6.2.0",
73-
"eslint-plugin-react": "^4.3.0",
72+
"eslint": "^2.9.0",
73+
"eslint-config-airbnb": "^8.0.0",
74+
"eslint-plugin-import": "^1.6.1",
75+
"eslint-plugin-jsx-a11y": "^1.0.4",
76+
"eslint-plugin-react": "^5.0.1",
7477
"in-publish": "^2.0.0",
75-
"nyc": "^6.1.1",
78+
"nyc": "^6.4.0",
7679
"react-addons-test-utils": "^0.14.8",
7780
"react-dom": "^0.14.8",
7881
"rimraf": "^2.5.2",

src/FormattedMessage.test.js

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
import test from 'ava';
2+
// import FormattedMessage from './FormattedMessage';
3+
4+
// TODO: Make it a real unit test!
5+
test(t => {
6+
t.truthy(1);
7+
});

0 commit comments

Comments
 (0)