forked from RequestNetwork/requestNetwork
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
70 lines (70 loc) · 1.91 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
{
"name": "@requestnetwork/utils",
"version": "0.8.0",
"publishConfig": {
"access": "public"
},
"description": "General tools for Request Network packages.",
"keywords": [
"requestnetwork",
"utils"
],
"repository": {
"type": "git",
"url": "git+https://github.com/RequestNetwork/requestNetwork.git"
},
"homepage": "https://github.com/RequestNetwork/requestNetwork/tree/master/packages/utils#readme",
"bugs": {
"url": "https://github.com/RequestNetwork/requestNetwork/issues"
},
"license": "MIT",
"engines": {
"node": ">=8.0.0"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"directories": {
"lib": "src",
"test": "test"
},
"files": [
"dist"
],
"scripts": {
"build": "tsc -b",
"clean": "shx rm -rf dist",
"lint": "tslint --project . && eslint \"src/**/*.ts\"",
"lint-staged": "lint-staged",
"prepare": "yarn run build",
"test": "nyc mocha --require ts-node/register --require source-map-support/register \"test/**/*.ts\"",
"test:watch": "nyc mocha --watch --watch-extensions ts --require ts-node/register --require source-map-support/register \"test/**/*.ts\""
},
"dependencies": {
"@requestnetwork/types": "0.9.1",
"bn.js": "4.11.8",
"eth-crypto": "1.5.0"
},
"devDependencies": {
"@types/bn.js": "4.11.5",
"@types/chai": "4.1.7",
"@types/mocha": "5.2.6",
"@types/sinon": "7.5.0",
"@typescript-eslint/parser": "1.2.0",
"chai": "4.2.0",
"chai-as-promised": "7.1.1",
"chai-spies": "1.0.0",
"eslint": "5.13.0",
"eslint-plugin-spellcheck": "0.0.11",
"eslint-plugin-typescript": "0.14.0",
"lint-staged": "8.1.3",
"mocha": "5.2.0",
"nyc": "13.2.0",
"prettier": "1.16.4",
"shx": "0.3.2",
"sinon": "7.5.0",
"source-map-support": "0.5.13",
"tslint": "5.12.1",
"typescript": "3.7.2"
},
"gitHead": "6155223cfce769e48ccae480c510b35b4f54b4d0"
}