-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
84 lines (84 loc) · 2.9 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
{
"name": "mew-connect-handshake-server",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"postinstall": "npm run installaws",
"installaws": "docker-compose run aws-sam && docker-compose run aws-cli",
"compile-modules": "node .build/imports.js",
"build": "rimraf dist/ && babel ./src --out-dir dist/ --copy-files && npm run compile-modules",
"package": "npm run build && docker-compose run aws-sam-package",
"deploy": "npm run package && docker-compose run aws-sam-deploy",
"update": "npm run package && docker-compose run aws-sam-update",
"test": "NODE_ENV=test CONNECTION_TIMEOUT=1000 jest --detectOpenHandles --forceExit --runInBand --verbose --silent --noStackTrace",
"test:verbose": "NODE_ENV=test CONNECTION_TIMEOUT=1000 jest --detectOpenHandles --forceExit --runInBand --verbose",
"test:debug": "NODE_ENV=test CONNECTION_TIMEOUT=1000 DEBUG=* jest --detectOpenHandles --forceExit --runInBand --verbose",
"test:bail": "NODE_ENV=test CONNECTION_TIMEOUT=1000 jest --bail --detectOpenHandles --forceExit --runInBand --verbose",
"test:unit": "npm test -- tests/unit",
"test:integration": "npm test -- tests/integration",
"lint": "prettier --write 'src/**/*.{js,json}' 'test/**/*.{js,jsx,json}'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/MyEtherWallet/MEWconnect-API-V2.git"
},
"homepage": "https://github.com/MyEtherWallet/MEWconnect-API-V2#readme",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"bluebird": "^3.5.3",
"crypto": "^1.0.1",
"dotenv": "^6.2.0",
"eccrypto": "^1.1.6",
"ethereumjs-util": "^6.0.0",
"find-imports": "^1.1.0",
"find-requires": "^0.2.4",
"fs-extra": "^7.0.1",
"jest": "^23.6.0",
"lodash": "^4.17.15",
"module-alias": "^2.1.0",
"node-cmd": "^3.0.0",
"node-dir": "^0.1.17",
"pre-commit": "^1.2.2",
"prepend-file": "^1.3.1",
"prettier": "^1.16.4",
"promise-ws": "^1.0.0-1",
"query-string": "^6.2.0",
"randomstring": "^1.1.5",
"read-package-json": "^2.0.13",
"secp256k1": "^3.6.1",
"simple-peer": "^9.2.1",
"write-pkg": "^3.2.0",
"wrtc": "^0.4.7"
},
"_moduleAliases": {
"@": "dist",
"@lambda": "dist/lambda",
"@util": "dist/util"
},
"jest": {
"testEnvironment": "node",
"setupFiles": [
"<rootDir>/test/jest.setup.js"
],
"moduleNameMapper": {
"@signals(.*)$": "<rootDir>/dist/util/signals$1",
"@clients(.*)$": "<rootDir>/test/clients$1",
"@config(.*)$": "<rootDir>/test/config$1",
"@utils(.*)$": "<rootDir>/test/utils$1",
"@/(.*)$": "<rootDir>dist$1"
}
},
"dependencies": {
"lambda-log": "^2.3.0",
"middy": "^0.28.4",
"twilio": "^3.29.0",
"validate": "^4.5.1"
},
"pre-commit": [
"lint"
]
}