-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
66 lines (66 loc) · 1.44 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "@waves/node-api-js",
"version": "1.3.10",
"main": "cjs/index.js",
"types": "cjs/index.d.ts",
"scripts": {
"testCommand": "jest",
"prepare": "npm run build",
"build": "tsc -p ./tsconfig-es.json && tsc -p ./tsconfig-cjs.json && webpack",
"test": "node-state -e -n -m typescript -o ./test/_state.ts -r"
},
"dependencies": {
"@types/node-fetch": "^2.5.4",
"@waves/bignumber": "^1.1.1",
"@waves/ts-types": "1.2.0",
"node-fetch": "^2.6.7",
"typed-ts-events": "^1.1.1"
},
"files": [
"dist",
"cjs",
"es"
],
"jest": {
"coverageThreshold": {
"global": {
"branches": 60,
"functions": 60,
"lines": 60,
"statements": 60
}
},
"collectCoverage": true,
"coveragePathIgnorePatterns": [
"/node_modules/",
"/test/",
"/src/libs/"
],
"moduleFileExtensions": [
"ts",
"tsx",
"js"
],
"transform": {
"^.+\\.(ts|tsx)$": "ts-jest"
},
"testMatch": [
"**/test/*spec.+(ts)",
"**/test/**/*spec.+(ts)"
],
"setupFilesAfterEnv": [
"<rootDir>/test/extendedMatcher.ts"
]
},
"devDependencies": {
"@types/jest": "^26.0.23",
"@waves/node-state": "0.1.0",
"@waves/waves-transactions": "4.3.10",
"jest": "^26.6.3",
"ts-jest": "^26.5.6",
"ts-loader": "^7.0.5",
"typescript": "^3.9.4",
"webpack": "^4.46.0",
"webpack-cli": "^4.9.2"
}
}