Skip to content

Commit c85a401

Browse files
committed
clean up dependencies
1 parent 6820bc3 commit c85a401

File tree

3 files changed

+36
-298
lines changed

3 files changed

+36
-298
lines changed

package.json

Lines changed: 9 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "react-scripts",
3-
"version": "0.12.0",
3+
"version": "0.13.0",
44
"description": "shared react site configs",
55
"main": "index.js",
66
"author": "First Look Media",
@@ -39,8 +39,6 @@
3939
"jsdom": "^9.4.1",
4040
"json-loader": "^0.5.4",
4141
"loader-utils": "^0.2.16",
42-
"mocha": "^2.5.3",
43-
"mocha-webpack": "^0.5.0",
4442
"postcss-calc": "^5.3.1",
4543
"postcss-loader": "^0.9.1",
4644
"precss": "^1.4.0",
@@ -55,22 +53,16 @@
5553
"webpack-node-externals": "^1.3.3"
5654
},
5755
"peerDependencies": {
58-
"babel-runtime": "^6.11.6",
59-
"chai": "^3.5.0",
60-
"chai-enzyme": "^0.5.0",
61-
"enzyme": "^2.4.1",
62-
"react": "^15.3.0",
63-
"react-addons-test-utils": "^15.3.0",
64-
"react-dom": "^15.3.0",
65-
"react-relay": "^0.9.0",
66-
"sinon": "^1.17.5",
67-
"sinon-chai": "^2.8.0",
68-
"source-map-support": "^0.4.2"
56+
"babel-runtime": ">=6.11.6",
57+
"enzyme": ">=2.4.1",
58+
"react": ">=15.3.0",
59+
"react-addons-test-utils": ">=15.3.0",
60+
"react-dom": ">=15.3.0",
61+
"react-relay": ">=0.9.0",
62+
"source-map-support": ">=0.4.2"
6963
},
7064
"devDependencies": {
71-
"babel-relay-plugin": "^0.9.3",
72-
"chai": "^3.5.0",
73-
"chai-enzyme": "^0.5.2",
65+
"babel-relay-plugin": ">=0.9.3",
7466
"core-js": "^2.4.1",
7567
"enzyme": "^2.5.1",
7668
"eslint": "^3.2.2",
@@ -79,8 +71,6 @@
7971
"react": "^15.3.2",
8072
"react-addons-test-utils": "^15.3.2",
8173
"react-dom": "^15.3.2",
82-
"sinon": "^1.17.6",
83-
"sinon-chai": "^2.8.0",
8474
"source-map-support": "^0.4.6"
8575
}
8676
}

scripts/test.js

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -12,13 +12,7 @@ const path = require('path');
1212

1313
argv.push(
1414
'--config',
15-
JSON.stringify(
16-
createJestConfig(
17-
relativePath => path.resolve(__dirname, '..', relativePath),
18-
path.resolve('src', '..'),
19-
false
20-
)
21-
)
15+
JSON.stringify(createJestConfig())
2216
);
2317

2418
jest.run(argv);

0 commit comments

Comments
 (0)