-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
45 lines (45 loc) · 1.59 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
{
"name": "volvox-hapi",
"version": "1.1.0",
"description": "Hapi.js provider for volvox.js Microservice framework",
"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"
]
},
"author": "ziyasal <[email protected]>",
"license": "ISC",
"dependencies": {
"bunyan": "^1.8.1",
"hapi": "^12.1.0",
"volvox-core": "^0.1.0"
},
"devDependencies": {
"babel-cli": "^6.4.5",
"babel-plugin-syntax-async-functions": "^6.3.13",
"babel-plugin-transform-regenerator": "^6.4.4",
"babel-polyfill": "^6.3.14",
"babel-preset-es2015": "^6.3.13",
"chai": "^3.4.1",
"eslint": "^1.10.3",
"express": "^4.13.4",
"gulp": "^3.9.0",
"isparta": "^4.0.0",
"mocha": "^2.3.4",
"request": "^2.67.0",
"sinon": "^1.17.2",
"hapi": "^12.1.0"
}
}