-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 944 Bytes
/
Copy pathpackage.json
File metadata and controls
39 lines (39 loc) · 944 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
{
"author": "Ilya Kaminsky (http://ilyakam.com)",
"bugs": {
"url": "https://github.com/ilyakam/dilbertbot/issues"
},
"dependencies": {
"node-schedule": "^1.2.0",
"slack-notify": "^0.1.6"
},
"description": "",
"devDependencies": {
"eslint": "^3.12.2",
"istanbul": "^0.4.5",
"jasmine": "^2.5.2",
"mockery": "^2.0.0",
"nodemon": "^1.11.0"
},
"homepage": "https://github.com/ilyakam/dilbertbot#readme",
"keywords": [
"bot",
"dilbert",
"slack",
"tutorial"
],
"license": "MIT",
"main": "index.js",
"name": "dilbertbot",
"repository": {
"type": "git",
"url": "git+https://github.com/ilyakam/dilbertbot.git"
},
"scripts": {
"dev": "nodemon -x 'npm run lint && npm run test'",
"lint": "./node_modules/eslint/bin/eslint.js .",
"start": "node index.js",
"test": "istanbul cover -x '*spec.js' ./node_modules/.bin/jasmine"
},
"version": "1.0.0"
}