-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 1.58 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
{
"name": "lookalike-util",
"version": "1.3.1",
"description": "Simply utility package for replacing lookalike characters with their respective word. Useful for those trying to bypass filters, etc.",
"module": "src/index.js",
"type": "module",
"directories": {
"lib": "lib",
"test": "tests"
},
"main": "dist/cjs/lookalike.js",
"types": "dist/types/index.d.ts",
"exports": {
".": {
"import": "./src/index.js",
"require": "./dist/cjs/lookalike.js"
}
},
"scripts": {
"test": "jest",
"tsc": "tsc",
"build": "webpack"
},
"jest": {
"transform": {
"^.+\\.[t|j]sx?$": "babel-jest"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/Status-Plus/lookalike-util.git"
},
"keywords": [
"discord",
"tests",
"filtering",
"bypassing",
"characters"
],
"author": "Status-Plus",
"license": "MIT",
"bugs": {
"url": "https://github.com/Status-Plus/lookalike-util/issues"
},
"homepage": "https://github.com/Status-Plus/lookalike-util#readme",
"devDependencies": {
"@babel/plugin-transform-runtime": "^7.17.10",
"@babel/preset-env": "^7.17.10",
"@typescript-eslint/eslint-plugin": "^5.21.0",
"@typescript-eslint/parser": "^5.21.0",
"babel": "^6.23.0",
"babel-jest": "^28.0.3",
"eslint": "^8.14.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.26.0",
"jest": "^28.0.3",
"ts-node": "^8.6.0",
"typescript": "^4.5.3",
"webpack": "^5.72.0",
"webpack-cli": "^4.9.2"
},
"dependencies": {
"axios": "^0.27.2"
}
}