This repository has been archived by the owner on May 14, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
69 lines (69 loc) · 1.81 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
{
"name": "@kinecosystem/kin-sdk-node",
"version": "0.9.4",
"description": "Kin SDK for the Node runtime",
"main": "scripts/bin/index.js",
"types": "scripts/bin/index.d.ts",
"scripts": {
"clean": "rimraf scripts/bin",
"transpile": "tsc -p scripts",
"lint": "./node_modules/.bin/tslint -p ./scripts",
"build": "npm-run-all clean transpile",
"transpile-tests": "tsc -p tests",
"test": "npm-run-all transpile transpile-tests jest",
"unit-test": "npm-run-all transpile transpile-tests jest-unit",
"jest": "jest --forceExit --runInBand --detectOpenHandles --coverage '.*\\.test.*'",
"jest-unit": "jest --forceExit --detectOpenHandles --coverage '.*\\.unit.test.*'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kinecosystem/kin-sdk-node.git"
},
"keywords": [
"typescript",
"javascript",
"kin",
"node",
"blockchain",
"cryptocurrency"
],
"author": "Kin Ecosystem",
"license": "Kin Ecosystem SDK License",
"bugs": {
"url": "https://github.com/kinecosystem/kin-sdk-node/issues"
},
"homepage": "https://github.com/kinecosystem/kin-sdk-node",
"devDependencies": {
"@types/eventsource": "^1.1.0",
"@types/jest": "^24.0.11",
"@types/nock": "^9.3.1",
"jest": "^23.6.0",
"nock": "^10.0.6",
"npm-run-all": "^4.1.5",
"ts-jest": "^23.10.5",
"tslint": "^5.14.0",
"tslint-eslint-rules": "^5.4.0",
"typescript": "^3.3.4000",
"jest-each": "^24.7.1"
},
"dependencies": {
"@kinecosystem/kin-sdk": "^0.20.8"
},
"jest": {
"moduleFileExtensions": [
"ts",
"tsx",
"js"
],
"testEnvironment": "node",
"transform": {
"^.+\\.(ts|tsx)$": "ts-jest"
},
"testMatch": [
"**/tests/src/**.ts"
],
"testPathIgnorePatterns": [
".d.ts"
]
}
}