package.json 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687
  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": "cpx \"src/**/*.{vert,frag,glsl}\" build/node_modules/ && tsc",
  16. "watch": "tsc -watch",
  17. "watch-shader": "cpx \"src/**/*.{vert,frag,glsl}\" build/node_modules/ --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. "app-render-test-watch": "webpack build/node_modules/apps/render-test/index.js -w --mode development -o web/render-test/index.js"
  22. },
  23. "jest": {
  24. "moduleFileExtensions": [
  25. "ts",
  26. "js"
  27. ],
  28. "transform": {
  29. "\\.ts$": "ts-jest"
  30. },
  31. "moduleDirectories": [
  32. "node_modules",
  33. "build/node_modules"
  34. ],
  35. "moduleNameMapper": {
  36. "mol-data($|/.*)": "<rootDir>/src/mol-data$1",
  37. "mol-gl($|/.*)": "<rootDir>/src/mol-gl$1",
  38. "mol-io($|/.*)": "<rootDir>/src/mol-io$1",
  39. "mol-math($|/.*)": "<rootDir>/src/mol-math$1",
  40. "mol-model($|/.*)": "<rootDir>/src/mol-model$1",
  41. "mol-ql($|/.*)": "<rootDir>/src/mol-ql$1",
  42. "mol-task($|/.*)": "<rootDir>/src/mol-task$1",
  43. "mol-util($|/.*)": "<rootDir>/src/mol-util$1"
  44. },
  45. "testRegex": "\\.spec\\.ts$"
  46. },
  47. "glslify": {
  48. "transform": [
  49. "glslify-import"
  50. ]
  51. },
  52. "author": "",
  53. "license": "MIT",
  54. "devDependencies": {
  55. "@types/argparse": "^1.0.33",
  56. "@types/benchmark": "^1.0.31",
  57. "@types/express": "^4.11.1",
  58. "@types/jest": "^22.2.2",
  59. "@types/node": "^9.6.2",
  60. "@types/node-fetch": "^1.6.8",
  61. "@types/react": "^16.3.5",
  62. "@types/react-dom": "^16.0.4",
  63. "benchmark": "^2.1.4",
  64. "copyfiles": "^2.0.0",
  65. "cpx": "^1.5.0",
  66. "extra-watch-webpack-plugin": "^1.0.1",
  67. "glslify-import": "^3.1.0",
  68. "glslify-loader": "^1.0.2",
  69. "jest": "^22.4.3",
  70. "raw-loader": "^0.5.1",
  71. "regl": "git+https://github.com/regl-project/regl.git#45c6ec570232420fca21567499c9c5a2a054432e",
  72. "ts-jest": "^22.4.2",
  73. "tslint": "^5.9.1",
  74. "typescript": "^2.8.1",
  75. "uglify-js": "^3.3.18",
  76. "util.promisify": "^1.0.0",
  77. "webpack": "^4.5.0",
  78. "webpack-cli": "^2.0.14"
  79. },
  80. "dependencies": {
  81. "argparse": "^1.0.10",
  82. "express": "^4.16.3",
  83. "node-fetch": "^2.1.2",
  84. "react": "^16.3.1",
  85. "react-dom": "^16.3.1"
  86. }
  87. }