spserver/package.json

35 lines
777 B
JSON
Raw Normal View History

2015-02-02 09:52:31 +00:00
{
"name": "spserver",
2018-07-22 12:28:47 +00:00
"version": "0.3.0",
2015-02-02 09:52:31 +00:00
"description": "Node static page server for running quick MVVM file server",
"main": "lib/spserver.js",
"scripts": {
2015-02-02 15:41:06 +00:00
"test": "mocha --reporter spec test/base.test.js"
2015-02-02 09:52:31 +00:00
},
"repository": {
"type": "git",
"url": "https://github.com/TheThing/spserver.git"
2015-02-02 09:52:31 +00:00
},
"keywords": [
"MVVM",
"server"
],
"author": "Jonatan Nilsson",
"license": "WTFPL",
"bugs": {
"url": "https://github.com/TheThing/spserver/issues"
2015-02-02 09:52:31 +00:00
},
"homepage": "https://github.com/TheThing/spserver",
2015-02-02 09:52:31 +00:00
"dependencies": {
2018-07-22 12:06:44 +00:00
"bunyan-lite": "^1.0.0",
"lodash": "^4.17.2",
"nconf": "^0.8.4",
2015-02-02 09:52:31 +00:00
"node-static": "^0.7.6"
},
2015-02-02 15:41:06 +00:00
"bin": "./bin.js",
"devDependencies": {
2018-07-22 12:27:56 +00:00
"mocha": "^5.2.0",
2015-02-02 15:41:06 +00:00
"sinon": "^1.12.2"
}
2015-02-02 09:52:31 +00:00
}