-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 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
{
"name": "mapper-app",
"description": "node.js application that consumes from AWS Kinesis and maps incoming data into AWS Redshift and out to socket.io server",
"version": "0.0.0",
"main": "app/index.js",
"bin": {
"kcl-bootstrap": "app/bin/kcl-bootstrap",
"kcl-bootstrap.bat": "app/bin/kcl-bootstrap.bat"
},
"scripts": {
"build": "grunt build",
"compile": "grunt compile",
"clean": "grunt clean",
"release": "grunt release",
"doc": "grunt jsdoc",
"start": "nodejs app/bin/kcl-bootstrap -e -p app/consumer/sample.properties",
"test": "node tests/travis_tests/test_wrapper.js"
},
"engines": {
"node": "6.4.1"
},
"dependencies": {
"commander": "~2.6.0",
"log4js": "^0.6.38",
"machina": "~1.0.0-1",
"pg": "^6.1.0",
"promise": "~7.1.1",
"request": "^2.74.0",
"socket.io-client": "~1.4.8",
"winston": "2.3.1"
},
"devDependencies": {
"exit": "~0.1.2",
"nodeunit": "~0.9.4",
"rewire": "~2.5.2",
"underscore": "~1.8.3",
"express": "~4.13.4",
"body-parser": "~1.15.2",
"socket.io": "~1.4.6",
"async": "~0.9.0",
"aws-sdk": "2.x",
"blanket": "~1.1.5",
"chai": "^1.10.0",
"grunt": "~0.4.5",
"grunt-cli": "~0.1.13",
"grunt-contrib-clean": "~0.6.0",
"grunt-contrib-jshint": "~0.6.4",
"grunt-jsdoc": "~0.5.8",
"grunt-mocha-test": "~0.12.7",
"log4js": "~0.6.22",
"mocha": "^2.1.0",
"sinon": "^1.12.2"
}
}