package.json 933 B

1234567891011121314151617181920212223242526272829303132333435
  1. {
  2. "name": "livecodingspace",
  3. "description": "LiveCoding.Space",
  4. "version": "0.0.1",
  5. "author": "Nikolai Suslov",
  6. "scripts": {
  7. "start": "node ./node-server.js --applicationPath=./public -p 3001",
  8. "startSSL": "node ./node-server.js --applicationPath=./public -p 3001 -s -k ./cert/key.pem -c ./cert/cert.pem",
  9. "test": "echo \"Error: no test specified\" && exit 1"
  10. },
  11. "directories": {
  12. "lib": "lib/nodejs"
  13. },
  14. "main": "node-server.js",
  15. "homepage": "http://livecoding.space",
  16. "repository": {
  17. "type": "git",
  18. "url": "https://github.com/NikolaySuslov/livecodingspace.git"
  19. },
  20. "dependencies": {
  21. "crypto": "1.0.1",
  22. "socket.io": "2.0.4",
  23. "socket.io-client": "^2.0.4",
  24. "async": "2.6.0",
  25. "mime": "2.2.0",
  26. "js-yaml": "3.10.0",
  27. "optimist": "0.6.1",
  28. "fs-extra": "5.0.0"
  29. },
  30. "devDependencies": {
  31. "mocha": "x.x.x",
  32. "should": "x.x.x"
  33. },
  34. "license": "Apache"
  35. }