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"
|
|
|
|
},
|
2020-12-05 10:42:55 +05:30
|
|
|
"prettier": {
|
2020-12-05 09:46:24 +05:30
|
|
|
"tabWidth": 4,
|
|
|
|
"semi": true
|
|
|
|
},
|
2019-05-19 10:41:30 +05:30
|
|
|
"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": {
|
2020-12-05 10:53:41 +05:30
|
|
|
"@fortawesome/fontawesome-free": "^5.15.1",
|
2022-12-06 15:58:35 +00:00
|
|
|
"body-parser": "^1.20.1",
|
2019-05-25 13:37:19 +05:30
|
|
|
"connect-busboy": "0.0.2",
|
2022-12-06 15:58:35 +00:00
|
|
|
"express": "^4.18.2",
|
2020-06-20 11:40:14 +05:30
|
|
|
"jquery": "^3.5.1",
|
2020-12-05 10:42:55 +05:30
|
|
|
"mocha": "^6.2.3",
|
|
|
|
"morgan": "^1.10.0"
|
2019-09-08 13:38:04 +05:30
|
|
|
},
|
|
|
|
"devDependencies": {
|
2020-12-05 10:42:55 +05:30
|
|
|
"@types/express": "^4.17.9",
|
|
|
|
"@types/node": "^14.14.10",
|
2019-09-08 13:38:04 +05:30
|
|
|
"chai": "^4.2.0",
|
|
|
|
"chai-http": "^4.3.0"
|
2019-05-19 12:21:40 +05:30
|
|
|
}
|
2019-05-19 10:41:30 +05:30
|
|
|
}
|