|
7 | 7 | "prepublish": "npm run build", |
8 | 8 | "test": "mocha --require babel-core/register test/**/*.js", |
9 | 9 | "test:watch": "npm run test -- --watch", |
10 | | - "build": "babel src --out-dir build" |
| 10 | + "build": "babel src --out-dir build", |
| 11 | + "lint": "eslint 'src/' 'test/'" |
11 | 12 | }, |
12 | 13 | "repository": { |
13 | 14 | "type": "git", |
|
26 | 27 | }, |
27 | 28 | "homepage": "https://github.com/lelandrichardson/react-native-mock#readme", |
28 | 29 | "devDependencies": { |
29 | | - "babel": "^6.3.26", |
30 | | - "babel-cli": "^6.4.5", |
31 | | - "babel-core": "^6.4.5", |
32 | | - "babel-plugin-check-es2015-constants": "^6.3.13", |
33 | | - "babel-plugin-syntax-async-functions": "^6.3.13", |
34 | | - "babel-plugin-syntax-class-properties": "^6.3.13", |
35 | | - "babel-plugin-syntax-trailing-function-commas": "^6.3.13", |
36 | | - "babel-plugin-transform-class-properties": "^6.4.0", |
37 | | - "babel-plugin-transform-es2015-arrow-functions": "^6.4.0", |
38 | | - "babel-plugin-transform-es2015-block-scoping": "^6.4.0", |
39 | | - "babel-plugin-transform-es2015-classes": "^6.4.5", |
40 | | - "babel-plugin-transform-es2015-computed-properties": "^6.4.0", |
41 | | - "babel-plugin-transform-es2015-destructuring": "^6.4.0", |
42 | | - "babel-plugin-transform-es2015-for-of": "^6.3.13", |
43 | | - "babel-plugin-transform-es2015-modules-commonjs": "^6.4.5", |
44 | | - "babel-plugin-transform-es2015-parameters": "^6.4.5", |
45 | | - "babel-plugin-transform-es2015-shorthand-properties": "^6.3.13", |
46 | | - "babel-plugin-transform-es2015-spread": "^6.4.0", |
47 | | - "babel-plugin-transform-es2015-template-literals": "^6.3.13", |
48 | | - "babel-plugin-transform-flow-strip-types": "^6.4.0", |
49 | | - "babel-plugin-transform-object-assign": "^6.3.13", |
50 | | - "babel-plugin-transform-object-rest-spread": "^6.3.13", |
51 | | - "babel-plugin-transform-react-display-name": "^6.4.0", |
52 | | - "babel-plugin-transform-react-jsx": "^6.4.0", |
53 | | - "babel-plugin-transform-regenerator": "^6.4.4", |
54 | | - "babel-preset-airbnb": "^2.0.0", |
55 | | - "chai": "^3.5.0", |
56 | | - "eslint": "^2.9.0", |
57 | | - "eslint-config-airbnb": "^9.0.1", |
58 | | - "eslint-plugin-import": "^1.8.0", |
59 | | - "eslint-plugin-jsx-a11y": "^1.2.0", |
60 | | - "eslint-plugin-react": "^5.1.1", |
61 | | - "mocha": "^2.4.5", |
62 | | - "react": "^15.0.2", |
| 30 | + "babel": "=6.5.2", |
| 31 | + "babel-cli": "=6.9.0", |
| 32 | + "babel-core": "=6.9.0", |
| 33 | + "babel-preset-airbnb": "=2.0.0", |
| 34 | + "babel-preset-react-native": "=1.8.0", |
| 35 | + "chai": "=3.5.0", |
| 36 | + "eslint": "2.10.2", |
| 37 | + "eslint-config-airbnb": "=9.0.1", |
| 38 | + "eslint-plugin-import": "=1.8.0", |
| 39 | + "eslint-plugin-jsx-a11y": "=1.2.2", |
| 40 | + "eslint-plugin-react": "=5.1.1", |
| 41 | + "eslint-plugin-react-native": "=1.0.2", |
| 42 | + "mocha": "=2.5.3", |
63 | 43 | "react-native": "^0.26.0" |
64 | 44 | }, |
65 | 45 | "dependencies": { |
66 | | - "cubic-bezier": "^0.1.2", |
67 | | - "invariant": "^2.2.0", |
68 | | - "keymirror": "^0.1.1", |
69 | | - "raf": "^3.1.0", |
70 | | - "react-addons-create-fragment": "^15.0.2", |
71 | | - "react-addons-linked-state-mixin": "^15.0.2", |
72 | | - "react-addons-perf": "^15.0.2", |
73 | | - "react-addons-pure-render-mixin": "^15.0.2", |
74 | | - "react-addons-test-utils": "^15.0.2", |
75 | | - "react-addons-update": "^15.0.2", |
76 | | - "react-timer-mixin": "^0.13.3", |
77 | | - "warning": "^2.1.0" |
| 46 | + "cubic-bezier": "=0.1.2", |
| 47 | + "invariant": "=2.2.1", |
| 48 | + "keymirror": "=0.1.1", |
| 49 | + "raf": "=3.2.0", |
| 50 | + "react": "=15.0.2", |
| 51 | + "react-addons-create-fragment": "=15.0.2", |
| 52 | + "react-addons-linked-state-mixin": "=15.0.2", |
| 53 | + "react-addons-perf": "=15.0.2", |
| 54 | + "react-addons-pure-render-mixin": "=15.0.2", |
| 55 | + "react-addons-test-utils": "=15.0.2", |
| 56 | + "react-addons-update": "=15.0.2", |
| 57 | + "react-timer-mixin": "=0.13.3", |
| 58 | + "warning": "=2.1.0" |
78 | 59 | }, |
79 | 60 | "peerDependencies": { |
80 | 61 | "react": "*", |
|
0 commit comments