package.json 2.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  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. "app-render-test": "webpack build/node_modules/apps/render-test/index.js --mode development -o web/render-test/index.js"
  20. },
  21. "jest": {
  22. "moduleFileExtensions": [
  23. "ts",
  24. "js"
  25. ],
  26. "transform": {
  27. "\\.ts$": "ts-jest"
  28. },
  29. "moduleDirectories": [
  30. "node_modules",
  31. "build/node_modules"
  32. ],
  33. "moduleNameMapper": {
  34. "mol-task($|/.*)": "<rootDir>/src/mol-task$1",
  35. "mol-comp($|/.*)": "<rootDir>/src/mol-comp$1",
  36. "mol-util($|/.*)": "<rootDir>/src/mol-util$1",
  37. "mol-data($|/.*)": "<rootDir>/src/mol-data$1",
  38. "mol-math($|/.*)": "<rootDir>/src/mol-math$1",
  39. "mol-io($|/.*)": "<rootDir>/src/mol-io$1",
  40. "mol-model($|/.*)": "<rootDir>/src/mol-model$1"
  41. },
  42. "testRegex": "\\.spec\\.ts$"
  43. },
  44. "author": "",
  45. "license": "MIT",
  46. "devDependencies": {
  47. "@types/argparse": "^1.0.33",
  48. "@types/benchmark": "^1.0.31",
  49. "@types/express": "^4.11.1",
  50. "@types/jest": "^22.1.3",
  51. "@types/node": "^9.4.6",
  52. "@types/node-fetch": "^1.6.7",
  53. "@types/react": "^16.0.4",
  54. "@types/react-dom": "^16.0.4",
  55. "benchmark": "^2.1.4",
  56. "jest": "^22.4.2",
  57. "regl": "git+https://github.com/regl-project/regl.git#45c6ec570232420fca21567499c9c5a2a054432e",
  58. "rollup": "^0.56.2",
  59. "rollup-plugin-buble": "^0.19.2",
  60. "rollup-plugin-commonjs": "^8.3.0",
  61. "rollup-plugin-json": "^2.3.0",
  62. "rollup-plugin-node-resolve": "^3.0.3",
  63. "rollup-watch": "^4.3.1",
  64. "ts-jest": "^22.0.4",
  65. "tslint": "^5.9.1",
  66. "typescript": "^2.7.2",
  67. "uglify-js": "^3.3.12",
  68. "util.promisify": "^1.0.0",
  69. "webpack": "^4.2.0",
  70. "webpack-cli": "^2.0.13"
  71. },
  72. "dependencies": {
  73. "argparse": "^1.0.10",
  74. "express": "^4.16.2",
  75. "node-fetch": "^2.0.0",
  76. "react": "^16.2.0",
  77. "react-dom": "^16.2.0"
  78. }
  79. }