-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.04 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.04 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
{
"name": "@discord-factory/colorize",
"version": "0.1.4",
"description": "",
"main": "build/index.js",
"author": "Baptiste Parmantier <baptiste.parmantier.pro@gmail.com>",
"license": "MIT",
"repository": "git@github.com:DiscordFactory/colorize.git",
"keywords": [],
"scripts": {
"dev": "tsc --watch",
"build": "tsc",
"lint": "eslint \"{src,test}/**/*.ts\"",
"lint:fix": "npm run lint -- --fix",
"test": "ava"
},
"devDependencies": {
"@antfu/eslint-config": "^0.6.2",
"@antfu/ni": "^0.5.5",
"@types/node": "^14.14.37",
"ava": "^3.15.0",
"bumpp": "^6.0.6",
"cross-env": "^7.0.3",
"eslint": "^7.23.0",
"eslint-plugin-ava": "^12.0.0",
"esno": "^0.5.0",
"git-ensure": "^0.1.0",
"ts-node-dev": "^1.1.6",
"tsup": "^4.8.21",
"typescript": "^4.2.3"
},
"dependencies": {
"discord.js": "^12.5.3"
},
"ava": {
"extensions": [
"ts"
],
"require": [
"ts-node/register"
],
"files": [
"test/**/*.spec.ts"
],
"verbose": true
}
}