-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.37 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.37 KB
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
{
"name": "@polymathnetwork/sdk",
"version": "0.0.0",
"main": "build/dist/index.js",
"typings": "build/dist/index.d.ts",
"private": true,
"scripts": {
"test": "jest"
},
"jest": {
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
],
"testMatch": [
"**/__tests__/**/*.(ts|js)"
],
"testPathIgnorePatterns": [
"build"
],
"transform": {
"^.+\\.tsx?$": "../../config/babelJestWrapper.js"
},
"moduleNameMapper": {
"~/(.*)": "<rootDir>/src/$1"
},
"setupFiles": [
"<rootDir>/src/testUtils/setupTests.ts"
]
},
"dependencies": {
"@babel/polyfill": "^7.0.0",
"@babel/runtime": "^7.2.0",
"@polymathnetwork/new-shared": "0.0.0",
"@types/json-stable-stringify": "^1.0.32",
"bignumber.js": "^8.0.1",
"lodash": "4.17.14",
"semver": "^5.6.0",
"uuid": "^3.3.2",
"web3": "1.2.0"
},
"devDependencies": {
"@babel/core": "^7.2.0",
"@types/jest": "^23.3.10",
"@types/node": "^10.12.12",
"@types/semver": "^5.5.0",
"@types/uuid": "^3.4.4",
"@types/web3": "^1.0.14",
"babel-core": "^7.0.0-bridge.0",
"babel-jest": "^23.6.0",
"jest": "^24.1.0",
"reflect-metadata": "^0.1.12",
"regenerator-runtime": "^0.13.1",
"typescript": "3.2.4",
"web3-core-promievent": "^1.0.0-beta.37"
}
}