-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·41 lines (41 loc) · 1.04 KB
/
package.json
File metadata and controls
executable file
·41 lines (41 loc) · 1.04 KB
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
{
"name": "reef-service",
"version": "1.0.0-beta.7",
"description": "A nodejs service for the Reef arquitectural pattern",
"main": "dist/index.js",
"scripts": {
"compile": "babel -d ./dist ./src",
"test": "mocha --timeout 15000 ./test/run"
},
"repository": {
"type": "git",
"url": "git+https://github.com/line64/node-reef-service.git"
},
"keywords": [
"reef"
],
"author": "Line64",
"license": "MIT",
"bugs": {
"url": "https://github.com/line64/node-reef-service/issues"
},
"homepage": "https://github.com/line64/node-reef-service#readme",
"dependencies": {
"aws-sdk": "^2.2.26",
"joi": "^7.1.0",
"sqs-consumer": "^3.0.0",
"sqs-producer": "^1.3.2",
"uid": "0.0.2"
},
"devDependencies": {
"babel-cli": "^6.3.17",
"babel-plugin-transform-runtime": "^6.3.13",
"babel-polyfill": "^6.3.14",
"babel-preset-es2015": "^6.3.13",
"babel-preset-stage-0": "^6.3.13",
"chai": "^3.5.0",
"dotenv": "^2.0.0",
"mocha": "^3.1.2",
"reef-client": "^1.0.0-beta.6"
}
}