-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
40 lines (40 loc) · 1.08 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
{
"name": "hydradx-js",
"version": "0.1.0",
"private": true,
"scripts": {
"build": "tsc && cp ./src/utils/import_wasm.js ./lib/utils/import_wasm.js",
"postinstall": "npm run build",
"test": "NODE_ENV=test jest --detectOpenHandles --forceExit",
"test:watch": "jest --watch"
},
"dependencies": {
"@polkadot/api": "^6.2.1",
"bignumber.js": "^9.0.1",
"bn.js": "^5.1.3",
"hydra-dx-wasm": "git+https://github.com/galacticcouncil/HydraDX-wasm"
},
"devDependencies": {
"@babel/core": "^7.13.10",
"@babel/plugin-transform-modules-commonjs": "^7.13.8",
"@babel/preset-env": "^7.13.10",
"@types/jest": "^26.0.20",
"babel-jest": "^26.6.3",
"babel-plugin-transform-es2015-modules-commonjs": "^6.26.2",
"jest": "^26.6.3",
"ts-jest": "^26.5.3",
"typescript": "^4.2.3"
},
"main": "lib/index.js",
"transformIgnorePatterns": [
"node_modules/(?!hydra-dx-wasm).+/"
],
"jest": {
"transformIgnorePatterns": [
"node_modules/(?!hydra-dx-wasm).+/"
],
"plugins": [
"plugin-transform-modules-commonjs"
]
}
}