-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathpackage.json
59 lines (59 loc) · 1.43 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": "watsonwork-weather",
"description": "A sample app that listens to messages posted to a space in IBM Watson Workspace and implements actions that return the weather",
"license": "Apache-2.0",
"version": "0.0.1",
"homepage": "https://github.com/watsonwork/watsonwork-weather",
"bugs": {
"url": "https://github.com/watsonwork/watsonwork-weather"
},
"repository": {
"type": "git",
"url": "https://github.com/watsonwork/watsonwork-weather.git"
},
"keywords": [
"watson",
"work",
"sample",
"weather"
],
"files": [
".npmrc",
"lib/",
"src/"
],
"main": "lib/app.js",
"bin": {
"weather": "lib/app.js"
},
"scripts": {
"start": "node lib/app.js",
"babel": "babel src --out-dir lib",
"test": "mocha lib/test",
"lint": "eslint src",
"clean": "rm -rf lib node_modules",
"build": "npm install && npm run babel && npm run lint && npm test",
"rebuild": "npm run clean && npm run build",
"cibuild": "npm run build"
},
"dependencies": {
"babel-preset-es2015": "^6.6.0",
"body-parser": "^1.15.2",
"debug": "^2.2.0",
"express": "^4.14.0",
"jsonwebtoken": "^7.1.9",
"memdown": "^1.2.4",
"pouchdb-node": "^6.1.2",
"request": "^2.73.0"
},
"devDependencies": {
"babel-cli": "^6.10.1",
"chai": "^3.5.0",
"eslint": "^3.3.0",
"mocha": "^2.5.3"
},
"engines": {
"node": ">=6.9.1",
"npm": ">=3.10.8"
}
}