├── README.md └── package.json /README.md: -------------------------------------------------------------------------------- 1 | # clientless 2 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "clientless", 3 | "version": "0.0.0", 4 | "description": "A ClientLess Framework.", 5 | "main": "index.js", 6 | "scripts": { 7 | "test": "echo \"Error: no test specified\" && exit 1" 8 | }, 9 | "repository": { 10 | "type": "git", 11 | "url": "git+https://github.com/phodal/clientless.git" 12 | }, 13 | "keywords": [ 14 | "clientless", 15 | "serverless" 16 | ], 17 | "author": "Phodal HUANG", 18 | "license": "MIT", 19 | "bugs": { 20 | "url": "https://github.com/phodal/clientless/issues" 21 | }, 22 | "homepage": "https://github.com/phodal/clientless#readme" 23 | } 24 | --------------------------------------------------------------------------------