-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.4 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
{
"name": "lk-collection",
"version": "3.2.1",
"description": "Implement collections in a lk stack (Lambda, Kinesis, MongoDB)",
"main": "lib/index.js",
"repository": {
"type": "git",
"url": "https://github.com/innowatio/lk-collection.git"
},
"dependencies": {
"ajv": "^2.0.1",
"aws-sdk": "^2.2.18",
"bluebird": "^3.0.5",
"bunyan": "^1.5.1",
"kinesis-router": "^1.2.1",
"mongodb": "^2.0.49",
"node-uuid": "^1.4.7",
"ramda": "^0.18.0"
},
"devDependencies": {
"babel": "^5.8.34",
"babel-core": "^5.8.34",
"babel-eslint": "^4.1.5",
"babel-plugin-rewire": "^0.1.22",
"chai": "^3.4.1",
"chai-as-promised": "^5.1.0",
"coveralls": "^2.11.4",
"eslint": "^1.10.1",
"isparta": "^3.5.3",
"mocha": "^2.3.4",
"rimraf": "^2.4.4",
"sinon": "^1.17.2",
"sinon-chai": "^2.8.0"
},
"scripts": {
"build": "babel src --out-dir lib",
"clean": "rimraf lib coverage",
"coverage": "NODE_PATH=src NODE_ENV=test babel-node $(npm bin)/isparta cover $(npm bin)/_mocha -- --recursive",
"coveralls": "cat coverage/lcov.info | coveralls",
"dev": "npm test -- --watch",
"lint": "eslint src test",
"prepublish": "npm run clean && npm run build",
"test": "NODE_PATH=src NODE_ENV=test mocha --compilers js:babel/register --recursive"
},
"author": "Team Wattellina <[email protected]>",
"license": "Apache-2.0"
}