8ab9bd7d22
This commit also changes the initial file in volume from README to README.md. Side note: By default, superagent only buffers response for text/* and form data. So when sending across README, the file is just an octet-stream and the response in not received in res.text. This can be fixed by calling buffer(false) in superagent request. Renaming the file to README.md side steps this problem because .md files have the mime type text/x-markdown.
35 lines
672 B
JSON
35 lines
672 B
JSON
{
|
|
"name": "yellowtent",
|
|
"description": "Yellow tent",
|
|
"version": "0.0.1",
|
|
"author": {
|
|
"name": "Yellow tent authors",
|
|
"email": "doesntexist@gmail.com"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/gramakri/yellowtent.git"
|
|
},
|
|
"engines": [
|
|
"node >= 0.8.0"
|
|
],
|
|
"dependencies": {
|
|
"readdirp": "*",
|
|
"mkdirp": "*",
|
|
"async": "*",
|
|
"optimist": "*",
|
|
"express": "*",
|
|
"superagent": "*",
|
|
"wrench": "*",
|
|
"debug": "*",
|
|
"mime": "*"
|
|
},
|
|
"devDependencies": {
|
|
"mocha": "*",
|
|
"expect.js": "*"
|
|
},
|
|
"scripts": {
|
|
"test": "./node_modules/mocha/bin/mocha -R spec server/test lib/test;"
|
|
}
|
|
}
|