package.json 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  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": "tslint src/**/*.ts",
  15. "build": "tsc",
  16. "watch": "tsc -watch",
  17. "test": "jest",
  18. "script": "node build/node_modules/script.js"
  19. },
  20. "jest": {
  21. "moduleFileExtensions": [
  22. "ts",
  23. "js"
  24. ],
  25. "transform": {
  26. "\\.ts$": "ts-jest"
  27. },
  28. "moduleDirectories": [
  29. "node_modules",
  30. "build/node_modules"
  31. ],
  32. "moduleNameMapper": {
  33. "mol-task($|/.*)": "<rootDir>/src/mol-task$1",
  34. "mol-comp($|/.*)": "<rootDir>/src/mol-comp$1",
  35. "mol-util($|/.*)": "<rootDir>/src/mol-util$1",
  36. "mol-data($|/.*)": "<rootDir>/src/mol-data$1",
  37. "mol-math($|/.*)": "<rootDir>/src/mol-math$1",
  38. "mol-io($|/.*)": "<rootDir>/src/mol-io$1",
  39. "mol-model($|/.*)": "<rootDir>/src/mol-model$1"
  40. },
  41. "testRegex": "\\.spec\\.ts$"
  42. },
  43. "author": "",
  44. "license": "MIT",
  45. "devDependencies": {
  46. "@types/argparse": "^1.0.33",
  47. "@types/benchmark": "^1.0.31",
  48. "@types/express": "^4.11.1",
  49. "@types/jest": "^22.1.3",
  50. "@types/node": "^9.4.6",
  51. "@types/node-fetch": "^1.6.7",
  52. "argparse": "^1.0.10",
  53. "benchmark": "^2.1.4",
  54. "jest": "^22.4.0",
  55. "rollup": "^0.56.2",
  56. "rollup-plugin-buble": "^0.19.2",
  57. "rollup-plugin-commonjs": "^8.3.0",
  58. "rollup-plugin-json": "^2.3.0",
  59. "rollup-plugin-node-resolve": "^3.0.3",
  60. "rollup-watch": "^4.3.1",
  61. "ts-jest": "^22.0.4",
  62. "tslint": "^5.9.1",
  63. "typescript": "^2.7.2",
  64. "uglify-js": "^3.3.11",
  65. "util.promisify": "^1.0.0"
  66. },
  67. "dependencies": {
  68. "express": "^4.16.2",
  69. "node-fetch": "^2.0.0"
  70. }
  71. }