-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.8 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.8 KB
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": "laifutil",
"version": "3.0.1",
"description": "Identify and parse Discord embeds sent from LaifuBot.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"prettier": "prettier --write .",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"test": "ts-mocha \"test/**/*.test.ts\"",
"prepack": "rimraf *.tgz && npm run build",
"prepublish": "npm run build && npm run build:docs",
"prebuild": "rimraf dist && npm run lint:fix",
"build": "tsc",
"build:docs": "typedoc",
"deploy": "np",
"postdeploy": "gh-pages -d docs"
},
"keywords": [
"discord",
"bot",
"laifu",
"laifubot",
"embed",
"parser"
],
"repository": {
"type": "git",
"url": "git+https://github.com/minidomo/laifutil.git"
},
"author": "JB Ladera <minidomou@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/minidomo/laifutil/issues"
},
"homepage": "https://github.com/minidomo/laifutil#readme",
"devDependencies": {
"@types/chai": "^4.3.1",
"@types/mocha": "^9.1.1",
"@typescript-eslint/eslint-plugin": "^5.30.4",
"@typescript-eslint/parser": "^5.30.4",
"chai": "^4.3.6",
"eslint": "^8.20.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"gh-pages": "^4.0.0",
"mocha": "^10.0.0",
"np": "^7.6.2",
"prettier": "^2.7.1",
"prettier-plugin-jsdoc": "^0.3.38",
"rimraf": "^3.0.2",
"ts-mocha": "^10.0.0",
"typedoc": "^0.23.8",
"typescript": "^4.7.4"
},
"dependencies": {
"discord-api-types": "^0.36.2",
"emoji-regex": "^10.1.0"
}
}