generated from ChainSafe/typescript-lib-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
69 lines (69 loc) · 2.07 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
{
"name": "@nodefactory/server-eth-auth",
"version": "0.1.3",
"description": "Validation of web3 signatures for server ethereum authentication",
"keywords": [
"web3",
"authentication",
"security"
],
"main": "dist/index.js",
"types": "dist/index.d.ts",
"engines": {
"node": ">=12"
},
"publishConfig": {
"access": "public"
},
"files": [
"dist",
"src"
],
"scripts": {
"test": "mocha -r ts-node/register test/**/*.spec.ts ",
"clean": "rm -rf lib",
"lint": "eslint --ext .ts src/",
"check-types": "tsc --noEmit",
"prepublishOnly": "yarn run build",
"prebuild": "yarn run clean",
"build": "yarn run build:lib && yarn run build:types",
"build:lib": "babel src -x .ts -d dist --source-maps",
"build:types": "tsc --emitDeclarationOnly --declaration --outDir dist -p tsconfig.build.json"
},
"repository": {
"type": "git",
"url": "git+https://github.com/NodeFactoryIo/server-eth-auth.git"
},
"author": "Nodefactory <info@nodefactory.io>",
"license": "MIT",
"bugs": {
"url": "https://github.com/NodeFactoryIo/server-eth-auth/issues"
},
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.3.3",
"@babel/preset-env": "^7.3.1",
"@babel/preset-typescript": "^7.3.3",
"@babel/register": "^7.0.0",
"@types/bn.js": "^4.11.5",
"@types/chai": "^4.1.7",
"@types/mocha": "^5.2.5",
"@types/node": "^12.0.10",
"@types/sinon": "^9.0.4",
"@typescript-eslint/eslint-plugin": "^1.3.0",
"@typescript-eslint/parser": "^1.3.0",
"chai": "^4.2.0",
"eslint": "5.16.0",
"eslint-plugin-import": "^2.18.2",
"mocha": "^6.1.4",
"sinon": "^9.0.2",
"ts-loader": "^6.2.1",
"ts-node": "^8.3.0",
"typescript": "3.8"
},
"dependencies": {
"eth-sig-util": "^2.5.3",
"ethereumjs-util": "^7.0.2",
"uuidv4": "^6.1.1"
}
}