-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
38 lines (38 loc) · 1.02 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
{
"name": "pingu",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "npm run build && node lib/index.js",
"build": "npx tsc -p .",
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "./node_modules/.bin/eslint 'src/**'",
"lint-fix": "./node_modules/.bin/eslint 'src/**' --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ikenami/pingu.git"
},
"author": "ikenami",
"license": "MIT",
"bugs": {
"url": "https://github.com/ikenami/pingu/issues"
},
"homepage": "https://github.com/ikenami/pingu#readme",
"dependencies": {
"@slack/bolt": "^1.2.0",
"@slack/logger": "^1.1.0",
"@types/node": "^12.0.10",
"axios": "^0.19.0",
"ts-node": "^8.3.0",
"typescript": "^3.5.2"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^2.3.2",
"@typescript-eslint/parser": "^2.3.2",
"eslint": "^6.5.1",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-plugin-import": "^2.18.2"
}
}