-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
54 lines (54 loc) · 1.7 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": "volvox-core",
"version": "0.1.0",
"description": "Microservice framework with powerful service discovery using Consul or ETCD",
"main": "lib/index.js",
"scripts": {
"compile": "babel src --out-dir lib",
"prepublish": "npm run compile",
"test": "node ./node_modules/babel-cli/bin/babel-node.js ./node_modules/mocha/bin/_mocha tests/**/*.spec.js",
"test-cov": "node ./node_modules/babel-cli/bin/babel-node.js ./node_modules/isparta/bin/isparta cover --report lcov --report text --report html ./node_modules/mocha/bin/_mocha -- --reporter dot tests/**/*.spec.js",
"test-travis": "node ./node_modules/babel-cli/bin/babel-node.js ./node_modules/isparta/bin/isparta cover --report lcov ./node_modules/mocha/bin/_mocha -- --reporter dot tests/**/*.spec.js && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage"
},
"babel": {
"presets": [
"es2015"
],
"plugins": [
"syntax-async-functions",
"transform-regenerator"
]
},
"keywords": [
"service",
"discovery",
"microservices",
"express",
"restfy",
"hapijs"
],
"author": "ziyasal <sarikayaziyagmail.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/microphonejs/microphone-core.git"
},
"dependencies": {
"portfinder": "^0.4.0",
"request": "^2.67.0",
"uuid": "^3.0.0"
},
"devDependencies": {
"babel-cli": "^6.4.5",
"babel-eslint": "^6.1.2",
"babel-preset-es2015": "^6.3.13",
"chai": "^3.4.1",
"eslint": "^3.1.1",
"gulp": "^3.9.0",
"isparta": "^4.0.0",
"mocha": "^2.3.4",
"proxyquire": "^1.7.3",
"sinon": "^1.17.2",
"validator": "^4.5.1"
}
}