forked from stellar/js-stellar-wallets
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
94 lines (94 loc) · 2.72 KB
/
Copy pathpackage.json
File metadata and controls
94 lines (94 loc) · 2.72 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"name": "@stellar/wallet-sdk",
"version": "0.9.1",
"description": "Libraries to help you write Stellar-enabled wallets in Javascript",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"repository": "git@github.com:stellar/js-stellar-wallets.git",
"author": "Stellar Development Foundation <hello@stellar.org>",
"license": "Apache-2.0",
"prettier": "@stellar/prettier-config",
"peerDependencies": {
"bignumber.js": "*",
"stellar-sdk": "^9.0.1"
},
"scripts": {
"prepare": "yarn build ; yarn build:commonjs",
"build": "tsc -p tsconfig.json",
"build:commonjs": "webpack --mode production",
"dev": "tsc-watch --project tsconfig.json --onSuccess 'yarn lint'",
"docs": "typedoc",
"lint": "tslint --fix --format verbose --project tsconfig.json",
"lintAndTest": "yarn lint && jest",
"prettier": "prettier --write '**/*.{js,ts,md}'",
"test": "jest --watch",
"test:ci": "jest"
},
"husky": {
"hooks": {
"pre-commit": "concurrently 'lint-staged' 'yarn build'"
}
},
"lint-staged": {
"concurrent": true,
"linters": {
"**/*.{js,md}": [
"prettier --write",
"git add"
],
"**/*.ts": [
"prettier --write",
"tslint --fix --format verbose",
"git add"
]
}
},
"devDependencies": {
"@babel/core": "^7.4.0",
"@babel/preset-env": "^7.4.1",
"@babel/preset-typescript": "^7.3.3",
"@stellar/prettier-config": "^1.0.1",
"@stellar/tsconfig": "^1.0.1",
"@stellar/tslint-config": "^1.0.4",
"@types/ledgerhq__hw-transport-u2f": "^4.21.1",
"@types/node-localstorage": "^1.3.0",
"@types/sinon": "^7.0.11",
"babel-jest": "^24.5.0",
"babel-loader": "^8.0.6",
"bignumber.js": "^8.1.1",
"concurrently": "^4.1.1",
"husky": "^1.3.1",
"jest": "^24.7.1",
"jest-fetch-mock": "^3.0.3",
"jest-mock-random": "^1.0.3",
"lint-staged": "^8.1.5",
"node-localstorage": "^2.1.5",
"path": "^0.12.7",
"prettier": "^1.17.0",
"regenerator-runtime": "^0.13.3",
"sinon": "^7.3.1",
"stellar-sdk": "^10.4.0",
"terser-webpack-plugin": "^2.3.0",
"ts-loader": "^6.2.1",
"tsc-watch": "^2.1.2",
"tslint": "^5.14.0",
"typedoc": "^0.14.2",
"typescript": "^3.3.3333",
"webpack": "^4.41.2",
"webpack-cli": "^3.3.10"
},
"dependencies": {
"@albedo-link/intent": "^0.9.2",
"@ledgerhq/hw-app-str": "^5.28.0",
"@ledgerhq/hw-transport-u2f": "^5.26.0",
"@stellar/freighter-api": "^1.1.2",
"@types/jest": "^24.0.11",
"change-case": "^3.1.0",
"lodash": "^4.17.14",
"query-string": "^6.4.2",
"scrypt-async": "^2.0.1",
"trezor-connect": "^8.1.16",
"tweetnacl": "^1.0.1",
"tweetnacl-util": "^0.15.0"
}
}