-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.44 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
{
"name": "stellar-resolve-claimant-predicates",
"version": "2.0.10",
"description": "Evaluate stellar claimant predicates",
"types": "dist/evalPredicates.d.ts",
"main": "dist/evalPredicates.js",
"scripts": {
"build": "npm run clean && npm run compile && npm run test",
"clean": "rm -rf dist/*",
"compile": "tsc -p . && babel -d dist --source-maps --extensions .ts src",
"prepublishOnly": "npm run build",
"test": "npx jest"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/hanseartic/stellar-resolve-claimant-predicates.git"
},
"funding": "https://fund.hanseartic.de/#stellar-resolve-claimant-predicates",
"keywords": [
"stellar",
"xlm",
"blockchain",
"claimable-balance"
],
"author": "hanseartic",
"license": "MIT",
"bugs": {
"url": "https://github.com/hanseartic/stellar-resolve-claimant-predicates/issues"
},
"homepage": "https://github.com/hanseartic/stellar-resolve-claimant-predicates#readme",
"dependencies": {
"bignumber.js": "^9.1.1",
"stellar-sdk": "^10.4.1"
},
"devDependencies": {
"@babel/cli": "^7.20.7",
"@babel/preset-env": "^7.20.2",
"@babel/preset-typescript": "^7.18.6",
"@types/jest": "^29.4.0",
"jest": "^29.4.1",
"ts-jest": "^29.0.5",
"typescript": "^4.9.4"
},
"files": [
"README.md",
"LICENSE",
"dist/evalPredicates.d.ts",
"dist/evalPredicates.js",
"dist/evalPredicates.js.map"
]
}