-
-
Notifications
You must be signed in to change notification settings - Fork 52
Expand file tree
/
Copy pathpackage.json
More file actions
85 lines (85 loc) · 3.02 KB
/
package.json
File metadata and controls
85 lines (85 loc) · 3.02 KB
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
{
"name": "@tkey/default",
"version": "8.1.0-alpha.0",
"description": "TKey default library",
"main": "dist/default.cjs.js",
"module": "dist/default.esm.js",
"unpkg": "dist/default.umd.min.js",
"jsdelivr": "dist/default.umd.min.js",
"types": "dist/types/index.d.ts",
"scripts": {
"test": "cross-env MOCKED=true mocha --config ../../.mocharc.json",
"coverage": "nyc yarn test",
"coverage-production": "nyc yarn test-production",
"test-development": "cross-env MOCKED=false METADATA=http://localhost:5051 mocha ./test/*.test.js --config ../../.mocharc.json",
"test-production": "cross-env MOCKED=false METADATA=https://metadata.tor.us mocha ./test/*.test.js --config ../../.mocharc.json --parallel",
"test-debugger": "cross-env MOCKED=true mocha --config ../../.mocharc.json --inspect-brk",
"browser-tests:local-mocked": "cross-env INFRA=LOCAL MOCKED=true karma start",
"browser-tests:local-dev": "cross-env INFRA=LOCAL MOCKED=false METADATA=http://localhost:5051 karma start",
"browser-tests:local-prod": "cross-env INFRA=LOCAL MOCKED=false METADATA=https://metadata.tor.us karma start",
"browser-tests:cloud-mocked": "cross-env INFRA=CLOUD MOCKED=true karma start",
"browser-tests:cloud-prod": "cross-env INFRA=CLOUD MOCKED=false METADATA=https://metadata.tor.us karma start",
"dev": "rimraf dist/ && cross-env NODE_ENV=development torus-scripts build",
"build": "rimraf dist/ && cross-env NODE_ENV=production torus-scripts build",
"lint": "eslint --fix 'src/**/*.ts'",
"prepack": "yarn run build",
"pre-commit": "lint-staged"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tkey/tkey.git"
},
"files": [
"dist",
"src"
],
"dependencies": {
"@tkey/common-types": "^8.1.0-alpha.0",
"@tkey/core": "^8.1.0-alpha.0",
"@tkey/security-questions": "^8.1.0-alpha.0",
"@tkey/service-provider-base": "^8.1.0-alpha.0",
"@tkey/service-provider-torus": "^8.1.0-alpha.0",
"@tkey/share-serialization": "^8.1.0-alpha.0",
"@tkey/share-transfer": "^8.1.0-alpha.0",
"@tkey/storage-layer-torus": "^8.1.0-alpha.0",
"@toruslabs/eccrypto": "^2.1.1",
"bn.js": "^5.2.1"
},
"devDependencies": {
"@tkey/private-keys": "^8.1.0-alpha.0",
"@tkey/seed-phrase": "^8.1.0-alpha.0",
"@toruslabs/http-helpers": "^4.0.0",
"@toruslabs/rss-client": "^1.4.1",
"@tkey/tss": "^8.1.0-alpha.0",
"jsrsasign": "^10.6.1",
"web3-utils": "^1.8.1"
},
"peerDependencies": {
"@babel/runtime": "7.x"
},
"lint-staged": {
"!(*d).ts": [
"yarn run lint --",
"prettier --write 'src/**/*.ts'"
]
},
"publishConfig": {
"access": "public"
},
"author": "Torus Labs",
"license": "MIT",
"bugs": {
"url": "https://github.com/tkey/tkey/issues"
},
"homepage": "https://github.com/tkey/tkey#readme",
"keywords": [
"customauth",
"torus-threshold-bak",
"threshold-bak",
"torus nodes",
"torus-embed",
"direct auth",
"tkey"
],
"gitHead": "9967ce9f795f495f28ef0da1fc50acde31dcc258"
}