-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
99 lines (99 loc) · 3.36 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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
{
"author": "Lukas Frischknecht <[email protected]>",
"bugs": {
"url": "https://github.com/luckyf/crypto-dns/issues"
},
"contributors": [],
"dependencies": {
"axios": "1.1.2"
},
"description": "This packages translates domain names into crypto wallet addresses, using standard TXT records set by the DNS.",
"displayName": "Crypto-DNS",
"devDependencies": {
"@commitlint/cli": "17.1.2",
"@commitlint/config-conventional": "17.1.0",
"@jest/types": "29.1.2",
"@saithodev/semantic-release-backmerge": "2.1.2",
"@semantic-release/changelog": "6.0.1",
"@semantic-release/commit-analyzer": "9.0.2",
"@semantic-release/exec": "6.0.3",
"@semantic-release/git": "10.0.1",
"@semantic-release/gitlab": "9.4.2",
"@semantic-release/npm": "9.0.1",
"@semantic-release/release-notes-generator": "10.0.3",
"@types/eslint": "8.4.6",
"@types/jest": "29.1.2",
"@types/node": "18.8.3",
"@types/prettier": "2.7.1",
"@typescript-eslint/eslint-plugin": "5.39.0",
"@typescript-eslint/parser": "5.39.0",
"conventional-changelog-conventionalcommits": "5.0.0",
"eslint": "8.25.0",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-no-loops": "0.3.0",
"eslint-plugin-prettier": "4.2.1",
"jest": "29.1.2",
"jest-junit": "14.0.1",
"licensee": "9.0.0",
"prettier": "2.7.1",
"semantic-release": "19.0.5",
"semantic-release-npm-deprecate-old-versions": "1.3.4",
"ts-jest": "29.0.3",
"ts-node": "10.9.1",
"tsc-watch": "5.0.3",
"typescript": "4.8.4",
"yarn-audit-fix": "9.3.6"
},
"homepage": "https://github.com/LuckyF/crypto-dns.git",
"keywords": [
"dns",
"security",
"encryption",
"crypto",
"crypto-dns",
"bitcoin",
"ethereum",
"blockchain",
"cryptography",
"identity",
"domain",
"dnssec",
"wallet"
],
"license": "MIT",
"main": "dist/index.js",
"name": "crypto-dns",
"repository": {
"type": "git",
"url": "https://git.frischknecht.dev/crypto-dns/packages/crypto-dns.git"
},
"scripts": {
"audit:fix": "yarn-audit-fix",
"build": "tsc -b",
"ci:build": "yarn build",
"ci:install:dev": "yarn install --non-interactive",
"ci:install:dev:frozen": "yarn install --non-interactive --frozen-lockfile",
"ci:install:prod": "yarn install --non-interactive --production",
"ci:install:prod:frozen": "yarn install --non-interactive --frozen-lockfile --production",
"ci:license": "licensee --errors-only",
"ci:license:report": "licensee --ndjson > license-report.json",
"ci:lint": "yarn lint",
"ci:outdated": "yarn outdated",
"ci:outdated:report": "yarn outdated --json > outdated-report.json",
"ci:semantic-release": "semantic-release",
"ci:test": "jest --coverage --ci --reporters=default --reporters=jest-junit",
"ci:vulnerabilities": "yarn audit",
"ci:vulnerabilities:report": "yarn audit --json > vulnerabilities-report.json",
"format": "prettier --write \"src/**/*\"",
"lint": "eslint .",
"publish:test": "npm publish --dry-run",
"start:dev": "tsc-watch --preserveWatchOutput --onSuccess 'node ./dist/index.js'",
"start:prod": "node dist/index.js",
"test": "jest",
"test:coverage": "jest --coverage",
"test:dev": "jest --watch",
"upgrade-latest": "yarn upgrade-interactive --latest"
},
"types": "dist/index.d.ts",
"version": "1.2.2"
}