forked from tokensoft/tokensoft-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.19 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
{
"name": "@openfinanceio/tokensoft-sdk",
"version": "0.0.7",
"description": "![Logo](./docs/img/logo.png)",
"main": "build/index.js",
"files": [
"build/**/*"
],
"scripts": {
"build": "tsc",
"test": "jest",
"prepublish": "yarn run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/openfinanceio/tokensoft-sdk.git"
},
"author": "Tokensoft Inc.",
"license": "ISC",
"bugs": {
"url": "https://github.com/openfinanceio/tokensoft-sdk/issues"
},
"homepage": "https://github.com/openfinanceio/tokensoft-sdk#readme",
"devDependencies": {
"@types/jest": "^26.0.14",
"@types/node": "^14.11.2",
"@types/node-fetch": "^2.5.7",
"ts-jest": "^26.4.0",
"ts-node-dev": "^1.0.0-pre.63",
"typescript": "^4.0.3"
},
"dependencies": {
"jest": "^26.6.3",
"node-fetch": "^2.6.1"
},
"jest": {
"transform": {
".(ts|tsx)": "ts-jest"
},
"testRegex": "(/__tests__/.*|\\.(test|spec))\\.(ts|tsx|js)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js"
]
},
"directories": {
"doc": "docs",
"test": "test"
},
"keywords": [
"tokensoft",
"erc1404",
"blockchain"
]
}