package.json 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  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. "@types/react": "^16.0.4",
  53. "@types/react-dom": "^16.0.4",
  54. "benchmark": "^2.1.4",
  55. "jest": "^22.4.2",
  56. "regl": "git+https://github.com/regl-project/regl.git#45c6ec570232420fca21567499c9c5a2a054432e",
  57. "rollup": "^0.56.2",
  58. "rollup-plugin-buble": "^0.19.2",
  59. "rollup-plugin-commonjs": "^8.3.0",
  60. "rollup-plugin-json": "^2.3.0",
  61. "rollup-plugin-node-resolve": "^3.0.3",
  62. "rollup-watch": "^4.3.1",
  63. "ts-jest": "^22.0.4",
  64. "tslint": "^5.9.1",
  65. "typescript": "^2.7.2",
  66. "uglify-js": "^3.3.12",
  67. "util.promisify": "^1.0.0"
  68. },
  69. "dependencies": {
  70. "argparse": "^1.0.10",
  71. "express": "^4.16.2",
  72. "node-fetch": "^2.0.0",
  73. "react": "^16.2.0",
  74. "react-dom": "^16.2.0"
  75. }
  76. }