Skip to content

Commit 2c07584

Browse files
author
Cody Douglass
committed
hard locking all dependencies, upgrading all packages to latest and downgrading jest and mocha
1 parent 45182b0 commit 2c07584

File tree

5 files changed

+6909
-23
lines changed

5 files changed

+6909
-23
lines changed

package.json

+20-20
Original file line numberDiff line numberDiff line change
@@ -28,32 +28,32 @@
2828
"url": "https://github.com/EOSIO/eosjs.git"
2929
},
3030
"dependencies": {
31-
"babel-runtime": "^6.26.0",
32-
"eosjs-ecc": "^4.0.1",
33-
"text-encoding": "^0.6.4"
31+
"babel-runtime": "6.26.0",
32+
"eosjs-ecc": "4.0.4",
33+
"text-encoding": "0.7.0"
3434
},
3535
"devDependencies": {
36-
"@blockone/tslint-config-blockone": "^2.0.0",
37-
"@types/jest": "23.3.1",
38-
"@types/node": "^10.3.1",
39-
"@types/text-encoding": "^0.0.35",
40-
"babel-cli": "^6.26.0",
41-
"babel-plugin-transform-runtime": "^6.23.0",
42-
"babel-preset-env": "^1.7.0",
43-
"babel-preset-stage-1": "^6.24.1",
36+
"@blockone/tslint-config-blockone": "2.0.0",
37+
"@types/jest": "24.0.6",
38+
"@types/node": "11.9.4",
39+
"@types/text-encoding": "0.0.35",
40+
"babel-cli": "6.26.0",
41+
"babel-plugin-transform-runtime": "6.23.0",
42+
"babel-preset-env": "1.7.0",
43+
"babel-preset-stage-1": "6.24.1",
4444
"cypress": "3.1.5",
4545
"jest": "23.5.0",
46-
"jest-fetch-mock": "^1.6.5",
47-
"json-loader": "^0.5.7",
46+
"jest-fetch-mock": "2.1.1",
47+
"json-loader": "0.5.7",
4848
"mocha": "5.2.0",
4949
"mochawesome": "3.1.1",
50-
"ts-jest": "23.1.4",
51-
"ts-loader": "^4.3.1",
52-
"tslint": "^5.11.0",
53-
"tslint-eslint-rules": "^5.4.0",
54-
"typescript": "^2.9.1",
55-
"webpack": "^4.11.0",
56-
"webpack-cli": "^3.0.2"
50+
"ts-jest": "24.0.0",
51+
"ts-loader": "5.3.3",
52+
"tslint": "5.12.1",
53+
"tslint-eslint-rules": "5.4.0",
54+
"typescript": "3.3.3",
55+
"webpack": "4.29.5",
56+
"webpack-cli": "3.2.3"
5757
},
5858
"jest": {
5959
"automock": false,

src/abi.abi.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -190,4 +190,4 @@
190190
]
191191
}
192192
]
193-
}
193+
}

src/tests/node.test.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ describe('Node JS environment', () => {
1313
it('transacts with manually configured TAPOS fields', async () => {
1414
transactionResponse = await tests.transactWithoutConfig();
1515
expect(Object.keys(transactionResponse)).toContain('transaction_id');
16-
});
16+
}, 10000);
1717

1818
it('transacts without broadcasting, returning signatures and packed transaction', async () => {
1919
transactionSignatures = await tests.transactWithoutBroadcast();

src/transaction.abi.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -114,4 +114,4 @@
114114
]
115115
}
116116
]
117-
}
117+
}

0 commit comments

Comments
 (0)