package.json 2.5 KB

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