This repository was archived by the owner on May 31, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
143 lines (143 loc) · 4.41 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
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
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
{
"name": "radixdlt",
"version": "2.0.0-beta.13",
"description": "A Javascript Client library for interacting with a RADIX Distributed Ledger.",
"main": "build/main/index.js",
"typings": "build/module/index.d.ts",
"module": "build/module/index.js",
"browser": {
"./build/module/index.js": "./build/main/index.js"
},
"repository": {
"type": "git",
"url": "https://github.com/radixdlt/radixdlt-js.git"
},
"keywords": [
"typescript",
"es6",
"starter",
"library",
"universal",
"umd",
"commonjs",
"radix",
"dlt"
],
"author": "Radix DLT",
"license": "MIT",
"bugs": {
"url": "https://github.com/radixdlt/radixdlt-js/issues"
},
"homepage": "https://github.com/radixdlt/radixdlt-js",
"scripts": {
"info": "npm-scripts-info",
"build": "run-s clean && run-p build:*",
"build:main": "tsc -p tsconfig.json",
"build:module": "tsc -p tsconfig.module.json",
"fix": "run-s fix:*",
"fix:prettier": "prettier \"src/**/*.ts\" --write",
"fix:tslint": "tslint --fix --project .",
"test": "run-s build test:*",
"test--disabled--:lint": "tslint --project . && prettier \"src/**/*.ts\" --list-different",
"test:unit": "mocha -r ts-node/register 'src/**/*.spec.ts' --exclude 'src/modules/hardware-wallet/**/*' --exit",
"test:integration": "mocha -r ts-node/register test/integration/**/*.spec.ts test/integration/*.spec.ts --exit",
"coverage": "nyc --reporter=lcov mocha -r ts-node/register src/**/*.spec.ts --exclude 'src/modules/hardware-wallet/**/*' --exit",
"doc": "run-s doc:html && open build/docs/index.html",
"doc:html": "typedoc src/ --target ES6 --mode file --out build/docs",
"doc:json": "typedoc src/ --target ES6 --mode file --json build/docs/typedoc.json",
"doc:publish": "gh-pages -m \"[ci skip] Updates\" -d build/docs",
"watch": "run-s clean build && run-p \"build:main -- -w\" \"build:module -- -w\" \"test:unit -- --watch\"",
"reset": "git clean -dfx && git reset --hard && npm i",
"clean": "rimraf build",
"prepare": "run-s build",
"prepublishOnly": "run-s test"
},
"scripts-info": {
"info": "Display information about the package scripts",
"build": "Clean and rebuild the project",
"fix": "Try to automatically fix any linting problems",
"doc": "Generate HTML API documentation and open it in a browser",
"doc:json": "Generate API documentation in typedoc JSON format",
"test": "Lint and unit test the project",
"watch": "Watch and rebuild the project on save, then rerun relevant tests",
"reset": "Delete all untracked files and reset the repo to the last commit"
},
"engines": {
"node": ">=8.9"
},
"dependencies": {
"@types/bn.js": "^4.11.3",
"@types/elliptic": "^6.4.9",
"@types/long": "^4.0.0",
"axios": "^0.18.0",
"bn.js": "^4.11.8",
"bs58": "^4.0.1",
"buffer": "^5.2.1",
"buffer-reader": "^0.1.0",
"bufferutil": "^4.0.0",
"cbor": "^5.0.2",
"decimal.js": "^10.0.1",
"elliptic": "^6.4.1",
"ipaddr.js": "^1.9.0",
"loglevel": "^1.6.1",
"long": "^4.0.0",
"nedb": "^1.8.0",
"nedb-promises": "^3.0.2",
"promise-retry": "^1.1.1",
"reflect-metadata": "^0.1.12",
"rpc-websockets": "^4.3.5",
"rxjs": "6.5.5",
"rxjs-compat": "^6.3.2",
"rxjs-tslint-rules": "^4.34.5",
"typescript-map": "0.0.6",
"utf-8-validate": "^5.0.1",
"uuid": "^8.3.1",
"ws": "^6.1.2"
},
"devDependencies": {
"@types/bs58": "^3.0.30",
"@types/chai": "^4.1.7",
"@types/fs-extra": "^5.0.4",
"@types/jest": "^22.0.0",
"@types/mocha": "^5.2.5",
"@types/nedb": "^1.8.5",
"@types/node": "^10.12.10",
"@types/sinon": "^9.0.0",
"@types/websocket": "0.0.40",
"chai": "^4.1.2",
"coveralls": "^3.0.3",
"jsonrpc-lite": "^2.0.2",
"mocha": "^5.2.0",
"npm-run-all": "^4.1.5",
"npm-scripts-info": "^0.3.9",
"nyc": "^13.1.0",
"prettier": "^1.15.2",
"rimraf": "^2.6.2",
"sinon": "^7.2.2",
"ts-node": "^7.0.1",
"tslint": "^5.10.0",
"tslint-config-prettier": "^1.17.0",
"tslint-immutable": "^4.9.1",
"typedoc": "^0.16.9",
"typescript": "^3.1.6"
},
"prettier": {
"singleQuote": true,
"semi": false
},
"nyc": {
"extension": [
".ts",
".tsx"
],
"exclude": [
"**/hardware-wallet/**/*",
"**/*.d.ts",
"**/*.spec.ts"
],
"reporter": [
"text-summary"
],
"all": true
}
}