-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 984 Bytes
/
package.json
File metadata and controls
41 lines (41 loc) · 984 Bytes
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
{
"name": "candra-wechaty-bot",
"version": "1.0.0",
"description": "support tickets bot",
"main": "bot.js",
"dependencies": {
"candobot-data": "git+ssh://git@github.com/coderbunker/candobot-data.git",
"mailgun-js": "^0.8.1",
"request": "^2.79.0",
"require-reload": "^0.2.2",
"wechaty": "^0.7.3"
},
"devDependencies": {
"chai": "^3.5.0",
"eslint": "^3.14.1",
"mocha": "^3.2.0",
"precommit-hook": "^3.0.0",
"tmp": "0.0.31"
},
"scripts": {
"test": "node_modules/.bin/mocha",
"start": "node bot.js",
"lint": "node_modules/eslint/bin/eslint.js *.js",
"validate": "npm ls --depth 0",
"watch": "node_modules/.bin/mocha --watch"
},
"pre-commit": [
"lint",
"test",
"validate"
],
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/coderbunker/candobot.git"
},
"author": "Ricky Ng-Adam <rngadam@gmail.com>",
"license": "ISC",
"engines": {
"node": ">= 6.9.0"
}
}