1234567891011121314151617181920212223242526272829303132333435 |
- {
- "name": "livecodingspace",
- "description": "LiveCoding.Space",
- "version": "0.0.1",
- "author": "Nikolai Suslov",
- "scripts": {
- "start": "node ./node-server.js --applicationPath=./public -p 3001",
- "startSSL": "node ./node-server.js --applicationPath=./public -p 3001 -s -k ./cert/key.pem -c ./cert/cert.pem",
- "test": "echo \"Error: no test specified\" && exit 1"
- },
- "directories": {
- "lib": "lib/nodejs"
- },
- "main": "node-server.js",
- "homepage": "http://livecoding.space",
- "repository": {
- "type": "git",
- "url": "https://github.com/NikolaySuslov/livecodingspace.git"
- },
- "dependencies": {
- "crypto": "1.0.1",
- "socket.io": "2.0.4",
- "socket.io-client": "^2.0.4",
- "async": "2.6.0",
- "mime": "2.2.0",
- "js-yaml": "3.10.0",
- "optimist": "0.6.1",
- "fs-extra": "5.0.0"
- },
- "devDependencies": {
- "mocha": "x.x.x",
- "should": "x.x.x"
- },
- "license": "Apache"
- }
|