This repository has been archived on 2023-03-26. You can view files and clone it, but cannot push or open issues or pull requests.
tstatic/package.json

31 lines
845 B
JSON
Raw Normal View History

2016-05-16 08:37:33 +01:00
{
"name": "host-container",
"version": "1.0.0",
"description": "Container to host simple static applications using a node server, so files can be deployed using rsync",
"main": "server.js",
"scripts": {
"test": "eslint server.js",
"start": "node server.js"
},
2016-08-13 16:31:22 +01:00
"engines": {
"node": "5.11.1"
},
2016-05-16 08:37:33 +01:00
"repository": {
"type": "git",
"url": "git+https://github.com/RealOrangeOne/host-container.git"
},
"author": "Jake Howard <git@theorangeone.net>",
"bugs": {
"url": "https://github.com/RealOrangeOne/host-container/issues"
},
"homepage": "https://github.com/RealOrangeOne/host-container#readme",
"dependencies": {
2016-08-20 23:09:04 +01:00
"connect-static-file": "=1.1.2",
2016-08-13 16:31:22 +01:00
"express": "=4.14.0"
2016-05-16 08:37:33 +01:00
},
"devDependencies": {
"eslint": "=1.9.0",
"eslint-config": "git://github.com/dabapps/eslint-config.git"
2016-05-16 08:50:55 +01:00
}
2016-05-16 08:37:33 +01:00
}