Files
nodejs-fm/package.json

34 lines
770 B
JSON
Raw Normal View History

2019-05-19 10:41:30 +05:30
{
"name": "nodejs-fm",
"version": "1.0.0",
"description": "Barebones file manager for a remote location",
"main": "index.js",
"scripts": {
2019-05-23 20:23:32 +05:30
"start": "node .",
2019-05-24 08:52:42 +05:30
"test": "mocha test.js --exit"
2019-05-19 10:41:30 +05:30
},
"repository": {
"type": "git",
"url": "git+https://github.com/chrisvrose/nodejs-fm.git"
},
"keywords": [
"file-manager",
"file-viewer"
],
"author": "Christopher Rose",
"license": "MIT",
"bugs": {
"url": "https://github.com/chrisvrose/nodejs-fm/issues"
},
2019-05-19 12:21:40 +05:30
"homepage": "https://github.com/chrisvrose/nodejs-fm#readme",
"dependencies": {
"body-parser": "^1.19.0",
2019-05-24 08:48:01 +05:30
"chai": "^4.2.0",
"chai-http": "^4.3.0",
2019-05-21 19:37:11 +05:30
"express": "^4.17.0",
2019-05-23 20:23:32 +05:30
"jquery": "^3.4.1",
2019-05-24 08:48:01 +05:30
"mocha": "^6.1.4",
2019-05-23 20:23:32 +05:30
"requests": "^0.2.2"
2019-05-19 12:21:40 +05:30
}
2019-05-19 10:41:30 +05:30
}