-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
59 lines (59 loc) · 1.76 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
{
"name": "collabobot",
"version": "0.0.1",
"description": "Collaborate robot for GitHub projects.",
"main": "lib/index.js",
"scripts": {
"build": "npm run auto-gen && tsc",
"prestart": "npm run build",
"start": "node lib/index.js",
"new-component": "tsc && node ./lib/utils/componentGenerator.js -c -n",
"new-service": "tsc && node ./lib/utils/componentGenerator.js -s -n",
"auto-gen": "tsc && node ./lib/utils/applicationGenerator.js",
"clean": "rm -rf ./lib/*",
"wc": "find . -path ./node_modules -prune -o -name '*.ts' -type f -print | xargs cat | wc -l",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Frankzhaopku/collabobot_private.git"
},
"keywords": [
"collaborate"
],
"author": "FrankZhao",
"license": "ISC",
"bugs": {
"url": "https://github.com/Frankzhaopku/collabobot_private/issues"
},
"homepage": "https://github.com/Frankzhaopku/collabobot_private#readme",
"_moduleDirectories": [
"./lib"
],
"dependencies": {
"bunyan": "^1.8.12",
"dingtalk-robot-sender": "^1.1.1",
"google-translate": "^2.2.0",
"lodash": "^4.17.15",
"module-alias": "^2.2.0",
"node-schedule": "^1.3.2",
"nodemailer": "^6.1.0",
"p-wait-for": "^3.1.0",
"pope": "^2.0.2",
"probot": "^9.2.2",
"require-from-string": "^2.0.2",
"typescript": "^3.4.3"
},
"devDependencies": {
"@types/args": "^3.0.0",
"@types/bunyan": "^1.8.6",
"@types/express": "^4.16.1",
"@types/lodash": "^4.14.123",
"@types/node": "^11.13.4",
"@types/node-schedule": "^1.2.3",
"@types/nodemailer": "^4.6.7",
"@types/require-from-string": "^1.2.0",
"args": "^5.0.1",
"smee-client": "^1.1.0"
}
}