-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.4 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
{
"name": "regenerator",
"version": "1.0.0",
"description": "Generate regular expressions to capture words.",
"main": "dist/index.js",
"scripts": {
"start": "node .",
"build": "tsc -b src",
"watch": "npm run build -- -w",
"deploy": "scripts/deploy.sh",
"test": "jest --no-watchman"
},
"keywords": [
"regexp",
"regex",
"generator",
"filter",
"automod",
"moderation"
],
"imports": {
"#root/*": "./dist/*.js",
"#source/*": "./dist/source/*"
},
"author": "Lily Wonhalf <[email protected]>",
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.15.0",
"@babel/plugin-proposal-class-properties": "^7.14.5",
"@babel/plugin-proposal-decorators": "^7.14.5",
"@babel/preset-env": "^7.15.0",
"@babel/preset-typescript": "^7.15.0",
"@sapphire/ts-config": "^3.0.0",
"@types/jest": "^27.0.1",
"@types/node": "^16.7.1",
"@types/node-fetch": "^2.5.12",
"@typescript-eslint/eslint-plugin": "^4.29.3",
"babel-plugin-const-enum": "^1.1.0",
"eslint": "^7.32.0",
"eslint-plugin-jest": "^24.4.0",
"eslint-plugin-jsdoc": "^36.0.7",
"jest": "^27.0.6",
"jest-circus": "^27.0.6",
"jest-mock-random": "^1.1.1",
"ts-node": "^10.2.1",
"ts-purify": "^3.0.1",
"typescript": "^4.3.5",
"typescript-eslint": "^0.0.1-alpha.0"
},
"dependencies": {
"@lilywonhalf/pretty-logger": "^2.0.2"
}
}