-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.54 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": "whitewater-bot",
"version": "1.0.0",
"description": "",
"main": "src/index.ts",
"directories": {
"test": "test"
},
"scripts": {
"test": "npm run build && mocha lib/**/*.test.js",
"build": "tsc",
"start": "node lib/index.js",
"post-status": "npm run build && npm start",
"lint": "eslint --max-warnings=0 src",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nelson-social/whitewater-bot.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/nelson-social/whitewater-bot/issues"
},
"homepage": "https://github.com/nelson-social/whitewater-bot#readme",
"dependencies": {
"@types/human-date": "^1.4.2",
"async-retry": "^1.3.3",
"date-fns": "^2.29.3",
"date-fns-tz": "^1.3.7",
"jsdom": "^20.0.3",
"node-fetch": "^3.3.0",
"pino": "^8.8.0",
"pino-pretty": "^9.1.1",
"striptags": "^3.2.0",
"tmp": "^0.2.1",
"typescript": "^4.9.4"
},
"type": "module",
"devDependencies": {
"@types/async-retry": "^1.4.5",
"@types/jsdom": "^20.0.1",
"@types/mocha": "^10.0.1",
"@types/tmp": "^0.2.3",
"@typescript-eslint/eslint-plugin": "^5.47.1",
"@typescript-eslint/parser": "^5.47.1",
"eslint": "^8.31.0",
"husky": "^8.0.2",
"lint-staged": "^13.1.0",
"mocha": "^10.2.0",
"prettier": "2.8.1"
},
"lint-staged": {
"src/**/*.{ts,tsx}": "eslint --fix --max-warnings=0",
"src/**/*.{js,jsx,ts,tsx,css,scss,md}": "prettier --write --ignore-unknown"
}
}