-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
105 lines (105 loc) · 3.39 KB
/
package.json
File metadata and controls
105 lines (105 loc) · 3.39 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
95
96
97
98
99
100
101
102
103
104
105
{
"name": "@trustlines/trustlines-clientlib",
"version": "0.17.2-0",
"publishConfig": {
"access": "public"
},
"description": "Javascript library for interacting with the trustlines network protocol",
"main": "lib-esm/TLNetwork.js",
"scripts": {
"build": "node filterContracts/filterContracts.js && tsc && tsc -m es6 --outDir lib-esm && webpack",
"build:esm": "tsc -m es6 --outDir lib-esm",
"doc": "typedoc --options tdconfig.json",
"lint": "tslint -c tslint.json './src/**/**.ts' './tests/**/**.ts'",
"prettier": "prettier --write './{src,tests}/**/*.ts'",
"prettier:check": "prettier --check './{src,tests}/**/*.ts'",
"prettier:big-tabs": "prettier --write --print-width 120 --no-semi --single-quote --tab-width 4 './{src,tests}/**/*.ts'",
"test": "mocha --timeout 30000 --require isomorphic-fetch -r ts-node/register tests/**/**.test.ts",
"test:e2e": "nyc mocha --timeout 240000 --require isomorphic-fetch -r ts-node/register tests/e2e/**.test.ts",
"test:integration": "nyc mocha --timeout 5000 --require isomorphic-fetch -r ts-node/register tests/integration/**.test.ts",
"test:unit": "nyc mocha --timeout 30000 --require isomorphic-fetch -r ts-node/register tests/unit/**.test.ts",
"coverage": "nyc report --reporter=text-lcov > coverage.lcov && codecov",
"watch:esm": "tsc -w -m es6 --outDir lib-esm",
"bump": "./bump.sh",
"serve": "webpack && cp -r ./_bundles ./examples/injected-web3 && http-server ./examples/injected-web3"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{ts,js,json,css,md}": [
"prettier --write",
"git add"
],
"*.ts": [
"tslint -c tslint.json --fix",
"git add"
]
},
"nyc": {
"extension": [
".ts"
],
"include": [
"src"
],
"reporter": [
"text"
],
"all": true
},
"repository": {
"type": "git",
"url": "git+https://github.com/trustlines-network/clientlib.git"
},
"author": "trustlines-network",
"license": "ISC",
"bugs": {
"url": "https://github.com/trustlines-network/clientlib/issues"
},
"homepage": "https://github.com/trustlines-network/clientlib#readme",
"devDependencies": {
"@types/chai": "^4.1.4",
"@types/chai-as-promised": "^7.1.0",
"@types/isomorphic-fetch": "0.0.34",
"@types/mocha": "^5.2.2",
"@types/node": "^10.17.21",
"awesome-typescript-loader": "^5.2.0",
"chai": "^4.1.2",
"chai-as-promised": "^7.1.1",
"codecov": "^3.8.3",
"es6-promise": "^4.1.1",
"fetch-mock": "^7.2.5",
"fluid-publish": "^2.2.0",
"http-server": "^0.11.1",
"husky": "^2.4.0",
"isomorphic-fetch": "^2.2.1",
"lint-staged": "^8.2.0",
"mocha": "^5.2.0",
"nyc": "^14.1.0",
"prettier": "^1.15.2",
"ts-node": "^7.0.0",
"tslint": "^5.17.0",
"tslint-config-prettier": "^1.18.0",
"typedoc": "^0.16.9",
"types-ethereumjs-util": "0.0.8",
"typescript": "^3.0.0",
"webpack": "^4.16.0",
"webpack-cli": "^3.0.8"
},
"dependencies": {
"@gnosis.pm/safe-core-sdk": "^3.1.1",
"@msgpack/msgpack": "^1.12.1",
"@trustlines/trustlines-contracts-abi": "^2.0.0",
"bignumber.js": "7.2.1",
"ethereumjs-util": "^5.2.0",
"ethers": "5.7.1",
"reconnecting-websocket": "^4.1.10",
"rxjs": "^5.4.1",
"simple-jsonrpc-js": "0.0.10",
"typedoc-plugin-markdown": "^2.2.16",
"ws": "^6.2.1"
}
}