-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.63 KB
/
Copy pathpackage.json
File metadata and controls
46 lines (46 loc) · 1.63 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
42
43
44
45
46
{
"name": "volvox-express",
"version": "0.1.0",
"description": "Express.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 <sarikayaziya@gmail.com>",
"license": "ISC",
"dependencies": {
"bunyan": "^1.8.1",
"express": "^4.13.4",
"volvox-core": "^0.1.0"
},
"devDependencies": {
"babel-cli": "^6.4.5",
"babel-eslint": "^6.1.2",
"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",
"bunyan": "^1.8.1",
"chai": "^3.4.1",
"eslint": "^3.1.1",
"express": "^4.13.4",
"gulp": "^3.9.0",
"isparta": "^4.0.0",
"mocha": "^2.3.4",
"request": "^2.67.0",
"sinon": "^1.17.2"
}
}