-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
80 lines (80 loc) · 1.71 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "fimk-sdk-v2",
"version": "1.0.1",
"description": "FIMK support libraries for Node.js",
"keywords": [
"fimk",
"fimk-sdk",
"blockchain",
"websocket",
"nodejs",
"npm-package",
"typescript",
"javascript",
"cryptography",
"microservices"
],
"main": "./dist/fimk-sdk",
"files": [
"dist"
],
"author": "Dennis de Klerk <[email protected]>",
"repository": {
"type": "git",
"url": "https://github.com/heatcrypto/fimk-sdk-v2"
},
"license": "MIT",
"engines": {
"node": ">=10.0.0"
},
"scripts": {
"postinstall": "npm dedupe",
"test": "jest --detectOpenHandles",
"build": "rimraf dist && tsc --project tsconfig.json"
},
"devDependencies": {
"@types/big.js": "^4.0.5",
"@types/bytebuffer": "^5.0.41",
"@types/jest": "^26.0.0",
"@types/long": "^4.0.1",
"@types/node-fetch": "^2.5.7",
"@types/pako": "^1.0.1",
"jest": "^26.0.1",
"node-fetch": "^2.6.0",
"rimraf": "^3.0.2",
"ts-jest": "^26.1.0",
"tslint": "^6.1.2",
"typescript": "^3.9.5"
},
"dependencies": {
"big.js": "5.2.2",
"bytebuffer": "5.0.1",
"long": "3.2.0",
"pako": "1.0.11",
"curve25519": "heatcrypto/curve25519#master",
"cryptojs": "heatcrypto/CryptoJs#master"
},
"jest": {
"transform": {
".(ts|tsx)": "ts-jest"
},
"testRegex": "(/__tests__/.*|\\.(test|spec))\\.(ts|tsx|js)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js"
],
"coveragePathIgnorePatterns": [
"/node_modules/",
"/test/"
],
"coverageThreshold": {
"global": {
"branches": 90,
"functions": 95,
"lines": 95,
"statements": 95
}
}
}
}