forked from watsonwork/watsonwork-helloworld
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 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
{
"name": "watsonwork-helloworld",
"description": "A sample app that sends a hello world message to a space in IBM Watson Workspace",
"license": "Apache-2.0",
"version": "0.0.1",
"homepage": "https://github.com/watsonwork/watsonwork-helloworld",
"bugs": {
"url": "https://github.com/watsonwork/watsonwork-helloworld"
},
"repository": {
"type": "git",
"url": "https://github.com/watsonwork/watsonwork-helloworld.git"
},
"keywords": [
"watson",
"work",
"hello"
],
"files": [
".npmrc",
"lib/",
"src/"
],
"main": "lib/app.js",
"scripts": {
"helloworld": "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",
"debug": "^2.2.0",
"request": "^2.73.0",
"babel-preset-env": "^1.5.1",
"bluebird": "^3.5.0"
},
"devDependencies": {
"chai": "^3.5.0",
"eslint": "^3.3.0",
"mocha": "^2.5.3",
"babel-cli": "^6.24.1",
"babel-plugin-transform-async-to-bluebird": "^1.1.1",
"babel-plugin-transform-promise-to-bluebird": "^1.1.1",
"babel-plugin-transform-runtime": "^6.23.0"
},
"engines": {
"node": ">=6.9.1",
"npm": ">=3.10.8"
}
}