-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
55 lines (55 loc) · 1.77 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
{
"name": "@ledgerhq/live-app-sdk",
"version": "0.8.2",
"repository": "git@github.com:LedgerHQ/ledger-live-platform-sdk.git",
"license": "Apache-2.0",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"/dist"
],
"scripts": {
"format:check": "prettier --check \"src\" \"tests\"",
"format:fix": "prettier --write \"src\" \"tests\"",
"lint:check": "eslint --cache --ext .ts \"src\" \"tests\"",
"lint:fix": "eslint --cache --fix --ext .ts \"src\" \"tests\"",
"prepare": "yarn build && husky install",
"build": "tsc -p tsconfig.prod.json",
"test": "nyc mocha",
"doc": "typedoc --gitRevision main --out docs/reference src/index.ts",
"doc:html": "typedoc --gitRevision main --out docs/html --plugin typedoc-plugin-rename-defaults --plugin typedoc-plugin-param-names src/index.ts"
},
"dependencies": {
"bignumber.js": "^9.1.1",
"json-rpc-2.0": "^1.1.0"
},
"devDependencies": {
"@types/chai": "^4.3.3",
"@types/chai-spies": "^1.0.3",
"@types/mocha": "^9.1.0",
"@types/node": "^18.7.23",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/parser": "^4.33.0",
"chai": "^4.3.6",
"chai-spies": "^1.0.0",
"eslint": "^7.32.0",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-prettier": "^4.2.1",
"husky": ">=8",
"lint-staged": ">=13",
"mocha": "^9.2.2",
"nyc": "^15.1.0",
"prettier": "^2.7.1",
"ts-node": "^10.9.1",
"typedoc": "^0.22.18",
"typedoc-plugin-markdown": "^3.12.1",
"typedoc-plugin-param-names": "^3.1.0",
"typedoc-plugin-rename-defaults": "^0.6.4",
"typescript": "^4.7.4"
},
"lint-staged": {
"*.ts": "yarn run lint:fix"
}
}