-
-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
70 lines (70 loc) · 1.88 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
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "size-plugin-bot",
"version": "1.0.0",
"description": "A Github bot for size-plugin",
"author": "kuldeepkeshwar <kuldeepkeshwar@gmail.com>",
"license": "ISC",
"repository": "https://github.com/kuldeepkeshwar/size-plugin-bot.git",
"homepage": "https://github.com/kuldeepkeshwar/size-plugin-bot",
"bugs": "https://github.com/kuldeepkeshwar/size-plugin-bot/issues",
"keywords": [
"size-plugin",
"size-plugin-bot"
],
"scripts": {
"dev": "nodemon",
"start": "probot run ./src/index.js",
"lint": "eslint src --fix",
"format": "prettier --write '**/*.{js,scss,jsx,md}'",
"test": "jest",
"test:watch": "jest --watch --notify --notifyMode=change --coverage"
},
"dependencies": {
"axios": "^0.19.0",
"emojis-list": "^3.0.0",
"fs-extra": "^8.0.1",
"pretty-bytes": "^5.2.0",
"probot": "^9.2.20",
"probot-config": "^1.1.0",
"simple-github-db": "^1.0.0"
},
"devDependencies": {
"dotenv": "^8.0.0",
"eslint": "^5.16.0",
"eslint-config-airbnb-base": "^13.2.0",
"eslint-plugin-import": "^2.18.0",
"execa": "^1.0.0",
"jest": "^24.0.0",
"lint-staged": "^9.2.4",
"nock": "^10.0.0",
"nodemon": "^1.17.2",
"prettier": "^1.18.2",
"smee-client": "^1.0.2"
},
"engines": {
"node": ">= 8.3.0"
},
"lint-staged": {
"linters": {
"*.{js,jsx}": [
"eslint --fix",
"prettier --write",
"git add"
]
},
"ignore": [
"**/dist/*",
"**/public/*"
]
},
"nodemonConfig": {
"exec": "npm start",
"watch": [
".env",
"."
]
},
"jest": {
"testEnvironment": "node"
}
}