-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
58 lines (58 loc) · 1.38 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
{
"name": "time-lord-bot",
"version": "0.0.1",
"description": "A discord bot",
"main": "index.js",
"author": "Errolyn",
"license": "MIT",
"engines": {
"node": "14.x",
"npm": "6.x",
"yarn": "1.x"
},
"scripts": {
"start": "ts-node -r dotenv/config index.ts",
"lint": "tsc --project . --noemit && eslint . --ext .js --ext .ts",
"fix": "eslint . --fix --ext .js --ext .ts",
"format": "prettier --check ./.eslintrc.js ./tests/.eslintrc.json **/*",
"test": "mocha",
"coverage": "nyc npm run test"
},
"dependencies": {
"@fluent/bundle": "^0.16.0",
"@types/node": "^15.0.1",
"dotenv": "^8.2.0",
"eris": "^0.13.1",
"node-fetch": "^2.6.1",
"sinon": "^9.2.1",
"sinon-chai": "^3.5.0",
"ts-node": "^9.1.1",
"typescript": "^4.2.4"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^4.22.0",
"@typescript-eslint/parser": "^4.22.0",
"chai": "^4.2.0",
"eslint": "^7.25.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.4",
"faker": "^5.1.0",
"husky": "^4.2.5",
"lint-staged": "^10.2.11",
"mocha": "^8.1.3",
"nyc": "^15.1.0",
"prettier": "^2.0.5",
"snowflake-util": "^1.0.1"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"**/*.js": [
"eslint --fix",
"prettier --write"
]
}
}