-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
50 lines (50 loc) · 1020 Bytes
/
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
41
42
43
44
45
46
47
48
49
50
{
"name": "@waves/provider-seed",
"version": "0.3.2",
"main": "dist/provider-seed.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"watch": "webpack --watch",
"build": "webpack",
"test": "jest"
},
"dependencies": {
"@types/ramda": "^0.26.38",
"@waves/signer": "^1.0.7",
"@waves/ts-types": "^1.0.2",
"@waves/waves-transactions": "^4.2.4",
"ramda": "^0.26.1"
},
"devDependencies": {
"@types/jest": "^24.0.24",
"jest": "^24.9.0",
"ts-jest": "^24.2.0",
"ts-loader": "^6.2.1",
"typescript": "^3.7.4",
"webpack": "^4.41.4",
"webpack-cli": "^3.3.10"
},
"jest": {
"collectCoverage": true,
"coveragePathIgnorePatterns": [
"/node_modules/",
"/test/",
"/src/libs/"
],
"moduleFileExtensions": [
"ts",
"tsx",
"js"
],
"transform": {
"^.+\\.(ts|tsx)$": "ts-jest"
},
"testMatch": [
"**/test/*spec.+(ts)",
"**/test/**/*spec.+(ts)"
]
}
}