-
Notifications
You must be signed in to change notification settings - Fork 42
/
Copy pathpackage.json
50 lines (50 loc) · 1.03 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
{
"name": "chia-client",
"version": "11.0.0",
"description": "TypeScript client for Chia node peer RPC interface",
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"test": "jest --runInBand test/",
"prepare": "rm -rf dist && npm run build"
},
"repository": {
"type": "git",
"url": "https://github.com/freddiecoleman/chia-client"
},
"keywords": [
"chia",
"cryptocurrency"
],
"author": "Freddie Coleman",
"license": "MIT",
"devDependencies": {
"@types/jest": "^25.2.1",
"@types/node": "^14.0.23",
"@types/yaml": "^1.9.7",
"jest": "^26.0.1",
"nock": "^12.0.3",
"ts-jest": "^25.5.1",
"typescript": "^3.8.3"
},
"dependencies": {
"axios": "^0.21.2",
"yaml": "2.0.0-5"
},
"jest": {
"roots": [
"<rootDir>/test",
"<rootDir>/src"
],
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"restoreMocks": true,
"globals": {
"ts-jest": {
"tsConfig": "tsconfig.json",
"isolatedModules": true
}
}
}
}