package.json 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. {
  2. "name": "mol-star-proto",
  3. "version": "0.1.0",
  4. "description": "Comprehensive molecular library.",
  5. "homepage": "https://github.com/mol-star/mol-star-proto#readme",
  6. "repository": {
  7. "type": "git",
  8. "url": "https://github.com/mol-star/mol-star-proto.git"
  9. },
  10. "bugs": {
  11. "url": "https://github.com/mol-star/mol-star-proto/issues"
  12. },
  13. "scripts": {
  14. "lint": "./node_modules/.bin/tslint src/**/*.ts",
  15. "build": "./node_modules/.bin/tsc",
  16. "watch": "./node_modules/.bin/tsc -watch",
  17. "test": "./node_modules/.bin/jest",
  18. "script": "node build/node_modules/script.js"
  19. },
  20. "jest": {
  21. "moduleFileExtensions": [
  22. "ts",
  23. "js"
  24. ],
  25. "transform": {
  26. "\\.ts$": "<rootDir>/node_modules/ts-jest/preprocessor.js"
  27. },
  28. "moduleDirectories": [
  29. "node_modules",
  30. "build/node_modules"
  31. ],
  32. "testRegex": "\\.spec\\.ts$"
  33. },
  34. "author": "",
  35. "license": "MIT",
  36. "devDependencies": {
  37. "@types/argparse": "^1.0.33",
  38. "@types/benchmark": "^1.0.31",
  39. "@types/express": "^4.11.1",
  40. "@types/jest": "^22.1.3",
  41. "@types/node": "^9.4.6",
  42. "@types/node-fetch": "^1.6.7",
  43. "argparse": "^1.0.10",
  44. "benchmark": "^2.1.4",
  45. "jest": "^22.4.0",
  46. "rollup": "^0.56.2",
  47. "rollup-plugin-buble": "^0.19.2",
  48. "rollup-plugin-commonjs": "^8.3.0",
  49. "rollup-plugin-json": "^2.3.0",
  50. "rollup-plugin-node-resolve": "^3.0.3",
  51. "rollup-watch": "^4.3.1",
  52. "ts-jest": "^22.0.4",
  53. "tslint": "^5.9.1",
  54. "typescript": "^2.7.2",
  55. "uglify-js": "^3.3.11",
  56. "util.promisify": "^1.0.0"
  57. },
  58. "dependencies": {
  59. "express": "^4.16.2",
  60. "node-fetch": "^2.0.0"
  61. }
  62. }