forked from oasisprotocol/ledger-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
78 lines (78 loc) · 2.18 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
69
70
71
72
73
74
75
76
77
78
{
"name": "@oasisprotocol/ledger",
"version": "1.0.0",
"description": "Javascript / Node API for Oasis apps running on Ledger Nano S/X",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"/dist",
"/docs",
"/LICENSE",
"/README.md"
],
"repository": {
"type": "git",
"url": "git+https://github.com/oasisprotocol/ledger-js.git"
},
"keywords": [
"Ledger",
"Javascript",
"Oasis"
],
"author": "Oasis Protocol Foundation",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/oasisprotocol/ledger-js/issues"
},
"homepage": "https://github.com/oasisprotocol/ledger-js",
"dependencies": {
"@babel/runtime": "^7.9.2",
"@ledgerhq/hw-transport": "^6.1.0"
},
"devDependencies": {
"@babel/cli": "^7.11.6",
"@babel/core": "^7.11.6",
"@babel/eslint-parser": "^7.17.0",
"@babel/node": "^7.10.5",
"@babel/plugin-transform-runtime": "^7.11.5",
"@babel/preset-env": "^7.11.5",
"@ledgerhq/hw-transport-node-hid": "^6.1.0",
"@ledgerhq/hw-transport-webusb": "^6.1.0",
"@ledgerhq/logs": "^6.0.2",
"babel-jest": "^29.0.3",
"buffer": "^5.5.0",
"core-js": "^3.4.8",
"ed25519-supercop": "^2.0.1",
"eslint": "^8.10.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jest": "^27.0.2",
"eslint-plugin-prettier": "^4.0.0",
"jest": "^29.0.2",
"js-sha512": "^0.8.0",
"prettier": "^2.1.2",
"secp256k1": "^5.0.0",
"typescript": "^4.6.2"
},
"scripts": {
"build": "babel src --out-dir dist && yarn build-types",
"build-types": "tsc -p ./tsconfig.json",
"certificate": "openssl req -nodes -new -x509 -keyout certs/server.key -out certs/server.cert; openssl x509 -in certs/server.cert -out certs/cert.pem -outform PEM",
"test:unit": "jest -c jest.config.unit.js --runInBand",
"test:integration": "jest -c jest.config.integration.js --runInBand --detectOpenHandles"
},
"moduleDirectories": [
"node_modules",
"dist"
],
"postcss": {
"plugins": {
"autoprefixer": {}
}
},
"browserslist": [
"> 1%",
"last 2 versions"
]
}