forked from kaiyuanshe/osschat
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.67 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
{
"name": "oss-bot",
"version": "0.2.7",
"description": "Apache OSS Bot",
"main": "index.js",
"engines": {
"node": "10"
},
"scripts": {
"build": "tsc",
"lint": "npm run lint:es && npm run lint:ts",
"lint:ts": "tsc --noEmit",
"start": "echo -e '\n\nDo not use `npm start` because its buggy with SIGTERM\n\nUse Procfile instead.\n\n$ npm run build && npx probot run ./dist/bin/main.js\n\n' && exit 0",
"test": "npm run lint && npm run test:unit",
"test:unit": "blue-tape -r ts-node/register \"src/**/*.spec.ts\" \"src/*.spec.ts\" \"tests/*.spec.ts\" \"tests/**/*.spec.ts\"",
"lint:es": "eslint --ignore-pattern node_modules/ --ignore-pattern fixtures/ '{bin,examples,src,scripts,tests}/**/*.ts'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kaiyuanshe/OSS-bot.git"
},
"author": "Huan LI <[email protected]>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/kaiyuanshe/OSS-bot/issues"
},
"homepage": "https://github.com/kaiyuanshe/OSS-bot#readme",
"dependencies": {
"brolog": "^1.6.5",
"commander": "^4.0.1",
"finis": "^0.4.3",
"moment": "^2.24.0",
"node-cache": "^5.1.0",
"probot": "^9.8.1",
"smee-client": "^1.1.0",
"wechaty": "^0.32.1"
},
"devDependencies": {
"@chatie/eslint-config": "^0.8.1",
"@chatie/git-scripts": "^0.2.5",
"@chatie/tsconfig": "^0.8.0",
"@hapi/hapi": "^18.3.1",
"@types/express": "^4.17.2",
"@types/hapi__hapi": "^19.0.0",
"@types/raven": "^2.5.1",
"@types/read-pkg-up": "^6.0.0",
"eslint": "^6.8.0",
"tstest": "^0.4.2"
},
"git": {
"scripts": {
"pre-push": "npx git-scripts-pre-push"
}
}
}