-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
70 lines (70 loc) · 2.03 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": "@nodefactory/web3-server-wallet",
"version": "1.2.0",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"homepage": "https://github.com/NodeFactoryIo/web3-server-wallet",
"publishConfig": {
"access": "public"
},
"files": [
"dist",
"src"
],
"repository": {
"type": "git",
"url": "git+https://github.com/NodeFactoryIo/web3-server-wallet.git"
},
"author": "NodeFactory <[email protected]>",
"license": "MIT",
"keywords": [
"web3",
"wallet",
"server-wallet"
],
"scripts": {
"prebuild": "rm -rf dist",
"build": "yarn run build:node && yarn run build:types",
"build:node": "babel --no-babelrc --config-file ./babel.config.json src --copy-files -x .ts -d dist --source-maps",
"build:types": "tsc --declaration --outDir dist --emitDeclarationOnly",
"check-types": "tsc --noEmit",
"lint": "eslint --ext .ts src/",
"pretest": "yarn check-types",
"test": "yarn run test:node",
"test:node": "mocha -r ./babel-register.js \"test/**/*.test.ts\""
},
"devDependencies": {
"@babel/cli": "^7.6.4",
"@babel/core": "^7.6.4",
"@babel/plugin-proposal-async-generator-functions": "^7.7.0",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/plugin-proposal-export-default-from": "^7.8.3",
"@babel/plugin-proposal-object-rest-spread": "^7.6.2",
"@babel/preset-env": "^7.6.3",
"@babel/preset-typescript": "^7.6.0",
"@babel/register": "^7.6.2",
"@babel/runtime": "^7.6.3",
"@types/bl": "^2.1.0",
"@types/chai": "^4.2.4",
"@types/debug": "^4.1.5",
"@types/mocha": "^5.2.7",
"@types/sinon": "^9.0.11",
"@typescript-eslint/eslint-plugin": "^2.6.0",
"@typescript-eslint/parser": "^2.6.0",
"chai": "^4.2.0",
"eslint": "^6.6.0",
"ethers": "^5.4.1",
"mocha": "^6.2.3",
"sinon": "^9.0.2",
"ts-loader": "^6.2.1",
"typescript": "^3.6.4"
},
"dependencies": {
"axios": ">=0.21.2",
"debug": "^4.2.0",
"it-pushable": "^1.4.0"
},
"peerDependencies": {
"ethers": ">=5"
}
}