-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
83 lines (83 loc) · 2.42 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
{
"name": "ts-wowemu-auth",
"version": "1.0.2",
"description": "Wowemu compliant SRP6 auth implementation",
"keywords": [
"wowemu",
"SRP6"
],
"author": "Laizerox",
"license": "GPL-3.0-or-later",
"repository": {
"type": "git",
"url": "https://github.com/Laizerox/ts-wowemu-auth.git"
},
"bugs": {
"url": "https://github.com/Laizerox/ts-wowemu-auth/issues"
},
"homepage": "https://github.com/Laizerox/ts-wowemu-auth#readme",
"main": "dist/index.js",
"module": "dist/index.es.js",
"files": [
"dist/index.js",
"dist/index.es.js",
"dist/index.d.ts"
],
"release": {
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/npm",
"@semantic-release/github",
"@semantic-release/changelog",
"@semantic-release/git"
],
"tagFormat": "${version}"
},
"scripts": {
"build": "rollup -c",
"lint": "eslint --ignore-path .gitignore ./src",
"semantic-release": "semantic-release",
"test": "jest --ci"
},
"dependencies": {
"create-hash": "^1.2.0",
"jsbn": "^1.1.0",
"randombytes": "^2.1.0"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^18.0.0",
"@rollup/plugin-node-resolve": "^11.2.1",
"@semantic-release/changelog": "^5.0.1",
"@semantic-release/commit-analyzer": "^8.0.1",
"@semantic-release/git": "^9.0.0",
"@semantic-release/github": "^7.2.1",
"@semantic-release/npm": "^7.1.1",
"@semantic-release/release-notes-generator": "^9.0.2",
"@types/create-hash": "^1.2.2",
"@types/jest": "^26.0.22",
"@types/jsbn": "^1.2.29",
"@types/randombytes": "^2.0.0",
"@typescript-eslint/eslint-plugin": "^4.21.0",
"@typescript-eslint/parser": "^4.21.0",
"eslint": "^7.23.0",
"eslint-config-prettier": "^8.1.0",
"eslint-import-resolver-node": "^0.3.4",
"eslint-import-resolver-typescript": "^2.4.0",
"eslint-module-utils": "^2.6.0",
"eslint-plugin-compat": "^3.9.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jest": "^24.3.4",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-simple-import-sort": "^7.0.0",
"jest": "^26.6.3",
"prettier": "^2.2.1",
"rollup": "^2.45.0",
"rollup-plugin-dts": "^3.0.1",
"rollup-plugin-typescript2": "^0.30.0",
"rollup-plugin-uglify": "^6.0.4",
"semantic-release": "^17.4.2",
"ts-jest": "^26.5.4",
"typescript": "^4.2.3"
}
}