package.json 2.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  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. "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. "author": "",
  48. "license": "MIT",
  49. "devDependencies": {
  50. "@types/argparse": "^1.0.33",
  51. "@types/benchmark": "^1.0.31",
  52. "@types/express": "^4.11.1",
  53. "@types/jest": "^22.1.3",
  54. "@types/node": "^9.6.0",
  55. "@types/node-fetch": "^1.6.7",
  56. "@types/react": "^16.0.4",
  57. "@types/react-dom": "^16.0.4",
  58. "benchmark": "^2.1.4",
  59. "copyfiles": "^2.0.0",
  60. "glslify-loader": "^1.0.2",
  61. "jest": "^22.4.2",
  62. "raw-loader": "^0.5.1",
  63. "regl": "git+https://github.com/regl-project/regl.git#45c6ec570232420fca21567499c9c5a2a054432e",
  64. "rollup": "^0.56.2",
  65. "rollup-plugin-buble": "^0.19.2",
  66. "rollup-plugin-commonjs": "^8.3.0",
  67. "rollup-plugin-json": "^2.3.0",
  68. "rollup-plugin-node-resolve": "^3.0.3",
  69. "rollup-watch": "^4.3.1",
  70. "ts-jest": "^22.0.4",
  71. "tslint": "^5.9.1",
  72. "typescript": "^2.8.1",
  73. "uglify-js": "^3.3.12",
  74. "util.promisify": "^1.0.0",
  75. "webpack": "^4.2.0",
  76. "webpack-cli": "^2.0.13"
  77. },
  78. "dependencies": {
  79. "argparse": "^1.0.10",
  80. "express": "^4.16.2",
  81. "node-fetch": "^2.0.0",
  82. "react": "^16.2.0",
  83. "react-dom": "^16.2.0"
  84. }
  85. }