forked from amina69/petad-stellar
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.69 KB
/
Copy pathpackage.json
File metadata and controls
63 lines (63 loc) · 1.69 KB
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
{
"name": "@petad/stellar-sdk",
"version": "0.1.0",
"description": "Blockchain infrastructure SDK for PetAd",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"README.md",
"CHANGELOG.md"
],
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org"
},
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"prebuild": "rimraf dist",
"test": "jest --testPathPattern=tests/unit --passWithNoTests",
"test:cov": "jest --testPathPattern=tests/unit --coverage --passWithNoTests",
"test:watch": "jest --testPathPattern=tests/unit --watch",
"test:integration": "jest --testPathPattern=tests/integration --runInBand --forceExit --passWithNoTests",
"lint": "eslint src/ tests/ --ext .ts",
"lint:fix": "eslint src/ tests/ --ext .ts --fix",
"format": "prettier --write src/ tests/",
"type-check": "tsc --noEmit",
"prepublishOnly": "npm run lint && npm run type-check && npm run build"
},
"dependencies": {
"@stellar/stellar-sdk": "^12.0.0"
},
"devDependencies": {
"@types/jest": "^29.0.0",
"@types/node": "^20.0.0",
"@typescript-eslint/eslint-plugin": "^8.57.1",
"@typescript-eslint/parser": "^8.57.1",
"eslint": "^8.0.0",
"jest": "^29.0.0",
"msw": "^2.0.0",
"prettier": "^3.0.0",
"rimraf": "^6.1.3",
"ts-jest": "^29.0.0",
"typescript": "^5.0.0"
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "node",
"coverageThreshold": {
"global": {
"branches": 80,
"functions": 80,
"lines": 80,
"statements": 80
}
},
"coverageReporters": [
"text",
"lcov",
"json-summary"
]
}
}