-
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.25 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.25 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": "@barajs/github",
"version": "1.1.2",
"description": "Bara Github integration module",
"repository": {
"type": "git",
"url": "git@github.com:barajs/github.git"
},
"publishConfig": {
"access": "public"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"license": "MIT",
"files": [
"dist"
],
"scripts": {
"start": "tsnd --debounce 3000 --respawn server.ts",
"compile": "yarn compile:tsc",
"compile:tsc": "tsc -b",
"compile:webpack": "webpack --mode=production",
"format": "prettier --write '{.,src/**}/*.{js,jsx,ts,tsx}'",
"semantic-release": "semantic-release"
},
"dependencies": {
"@barajs/core": "3.0.0-alpha.426",
"@octokit/app": "4.1.0",
"@octokit/webhooks": "6.3.2"
},
"devDependencies": {
"@semantic-release/changelog": "3.0.5",
"@semantic-release/commit-analyzer": "6.3.1",
"@semantic-release/git": "7.0.17",
"@semantic-release/github": "5.5.5",
"@semantic-release/npm": "5.3.2",
"@types/lru-cache": "5.1.0",
"@types/redux": "3.6.0",
"prettier": "1.18.2",
"semantic-release": "15.13.28",
"ts-loader": "6.2.1",
"ts-node-dev": "1.0.0-pre.43",
"typescript": "3.6.4",
"webpack": "4.41.2",
"webpack-cli": "3.3.9"
}
}