-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.55 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
{
"name": "glow.ts",
"version": "1.0.3",
"displayName": "Glow.ts",
"description": "Client library for interacting with Zax Cryptographic Relay Servers",
"keywords": [
"vault12",
"glow",
"typescript",
"ts",
"zax",
"cryptographic",
"relay"
],
"author": "Vault12 <[email protected]>",
"repository": {
"type": "git",
"url": "git+https://github.com/vault12/glow.ts.git"
},
"bugs": {
"url": "https://github.com/vault12/glow.ts/issues"
},
"homepage": "https://github.com/vault12/glow.ts#readme",
"license": "MIT",
"scripts": {
"clean": "rm -rf dist/",
"build:esm": "tsc",
"build:commonjs": "tsc -p ./tscconfig.cjs.json",
"build": "npm run clean && npm run build:esm && npm run build:commonjs",
"prepublishOnly": "npm run build",
"lint": "eslint 'src/**'",
"lint:fix": "eslint 'src/**' --fix",
"test": "jest",
"test:coverage": "jest --coverage",
"test:watch": "jest --watch"
},
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"types": "dist/types/index.d.ts",
"files": [
"dist/**/*"
],
"dependencies": {
"async-mutex": "0.3.2",
"axios": "0.28.0",
"js-sha256": "0.9.0",
"tweetnacl": "1.0.3"
},
"devDependencies": {
"@types/jest": "27.4.0",
"@typescript-eslint/eslint-plugin": "5.12.0",
"@typescript-eslint/parser": "5.12.0",
"axios-mock-adapter": "1.20.0",
"eslint": "8.9.0",
"jest": "27.5.1",
"jest-localstorage-mock": "2.4.19",
"ts-jest": "27.1.3",
"ts-node": "10.5.0",
"typescript": "4.5.5"
}
}