-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 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
{
"name": "glip-personal-bot-skill-time",
"version": "1.0.0",
"description": "Simple time bot skill for ringcentral-personal-chatbot-js which respond to 'time' command with user's time and timezone that can be set service web",
"main": "dist/server/index.js",
"scripts": {
"ngrok": "ngrok http -region ap 4100",
"start": "node -r @babel/register ./node_modules/.bin/rcpf build/test-bot.js",
"c": "webpack-dev-server --open --progress --colors --config build/webpack.config.babel.js",
"compile": "babel src/server --out-dir dist/server",
"p": "node ./node_modules/.bin/rcpf build/test-bot.js",
"build": "npm run clean && npm run compile",
"clean": "node build/clean.js",
"prepublishOnly": "npm run build",
"lint": "./node_modules/.bin/standard",
"fix": "./node_modules/.bin/standard --fix"
},
"keywords": [
"RingCentral",
"Chatbot",
"Glip",
"personal",
"time",
"timezone"
],
"author": "Drake Zhao <drake.zhao@ringcentral.com>",
"license": "MIT",
"devDependencies": {
"@babel/cli": "7.17.6",
"@babel/core": "7.17.9",
"@babel/preset-env": "7.16.11",
"@babel/register": "7.17.7",
"babel-eslint": "^10.0.1",
"dotenv": "^16.0.0",
"ngrok": "^3.1.0",
"shelljs": "0.8.5",
"standard": "16.0.4"
},
"dependencies": {
"dayjs": "^1.11.1"
},
"peerDependencies": {
"ringcentral-personal-chatbot": "^1.0.3"
},
"standard": {
"parser": "babel-eslint",
"ignore": [
"/dist/",
"/temp/"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/rc-personal-bot-framework/glip-personal-bot-skill-time.git"
},
"bugs": {
"url": "https://github.com/rc-personal-bot-framework/glip-personal-bot-skill-time/issues"
},
"homepage": "https://github.com/rc-personal-bot-framework/glip-personal-bot-skill-time#readme",
"files": [
"dist",
"README.md"
]
}