forked from wechaty/getting-started
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.56 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
{
"name": "wechaty-getting-started",
"version": "0.2.18",
"description": "Wechaty is a Wechat Bot SDK for Personal Account in Node.js",
"main": "examples/ding-dong-bot.js",
"engines": {
"node": ">= 10"
},
"scripts": {
"lint": "eslint 'examples/*.{js,ts}'",
"start": "cross-env WECHATY_LOG=verbose nodemon -w examples/ examples/ding-dong-bot.ts",
"start:js": "cross-env WECHATY_LOG=verbose node examples/ding-dong-bot.js",
"start:ts": "cross-env WECHATY_LOG=verbose node -r ts-node/register examples/ding-dong-bot.ts",
"test": "npm run lint && npm run test:version && npm run test:smoke",
"test:smoke": "node tests/smoke-testing.js",
"test:version": "check-node-version --node \">= 10\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/Chatie/wechaty-getting-started.git"
},
"keywords": [],
"author": "Huan LI <[email protected]>",
"license": "ISC",
"bugs": {
"url": "https://github.com/Chatie/wechaty-getting-started/issues"
},
"homepage": "https://github.com/Chatie/wechaty-getting-started#readme",
"dependencies": {
"qrcode-terminal": "^0.12.0",
"wechaty": "^0.40.1",
"wechaty-plugin-contrib": "^0.6.15"
},
"devDependencies": {
"@chatie/eslint-config": "^0.8.1",
"@chatie/git-scripts": "^0.6.1",
"@chatie/tsconfig": "^0.8.0",
"check-node-version": "^4.0.3",
"connect": "^3.7.0",
"cross-env": "^7.0.2",
"is-pr": "^1.1.0",
"marked": "^1.1.0",
"nodemon": "^2.0.3"
},
"git": {
"scripts": {
"pre-push": "npx git-scripts-pre-push"
}
}
}