-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
68 lines (68 loc) · 1.39 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
{
"name": "@satoshipay/stellar-transfer",
"version": "0.0.0",
"description": "Stellar SEP-24 client implementation",
"author": "SatoshiPay Ltd (https://satoshipay.io/)",
"license": "MIT",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"lint": "tslint --project .",
"precommit": "lint-staged",
"prepare": "npm run build",
"prettier": "prettier --write 'src/**.ts' *.md",
"test": "ava",
"test:ci": "ava",
"posttest": "npm run lint"
},
"peerDependencies": {
"stellar-sdk": ">= 3.0.0"
},
"dependencies": {
"@types/big.js": "^4.0.5",
"axios": "^0.21.1",
"big.js": "^5.2.2",
"debug": "^4.1.1",
"form-data": "^3.0.0"
},
"devDependencies": {
"@types/debug": "^4.1.2",
"ava": "^1.2.1",
"husky": "^1.3.1",
"lint-staged": "^8.1.4",
"prettier": "^1.16.4",
"stellar-sdk": "^3.1.2",
"tap-xunit": "^2.3.0",
"ts-node": "^8.0.2",
"tslint": "^5.12.1",
"tslint-config-prettier": "^1.18.0",
"typescript": "^3.7.5"
},
"ava": {
"compileEnhancements": false,
"extensions": [
"ts"
],
"require": [
"ts-node/register"
]
},
"files": [
"dist/"
],
"lint-staged": {
"ignore": [
"**/*.yml"
],
"linters": {
"*": [
"prettier --write",
"git add"
]
}
},
"prettier": {
"semi": false
}
}