package.json 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. {
  2. "name": "molio",
  3. "version": "0.1.0",
  4. "description": "Parsers for molecular data.",
  5. "main": "dist/molio.js",
  6. "module": "dist/molio.esm.js",
  7. "types": "src/index.d.ts",
  8. "scripts": {
  9. "lint": "./node_modules/.bin/tslint src/**/*.ts",
  10. "build": "./node_modules/.bin/tsc",
  11. "watch": "./node_modules/.bin/tsc -watch",
  12. "bundle": "./node_modules/.bin/rollup -c",
  13. "test": "./node_modules/.bin/jest",
  14. "dist": "./node_modules/.bin/uglifyjs build/js/molio.dev.js -cm > dist/molio.js && cp build/js/molio.esm.js dist/molio.esm.js",
  15. "script": "./node_modules/.bin/rollup build/js/src/script.js -e fs -f cjs -o build/js/script.js",
  16. "runscript": "npm run script && node build\\js\\script.js"
  17. },
  18. "jest": {
  19. "moduleFileExtensions": [
  20. "ts",
  21. "js"
  22. ],
  23. "transform": {
  24. "\\.ts$": "<rootDir>/node_modules/ts-jest/preprocessor.js"
  25. },
  26. "testRegex": "\\.spec\\.ts$"
  27. },
  28. "author": "",
  29. "license": "MIT",
  30. "devDependencies": {
  31. "@types/jest": "latest",
  32. "@types/node": "^8.0.28",
  33. "jest": "^21.1.0",
  34. "rollup": "^0.49.3",
  35. "rollup-plugin-buble": "^0.15.0",
  36. "rollup-plugin-commonjs": "^8.2.1",
  37. "rollup-plugin-json": "^2.3.0",
  38. "rollup-plugin-node-resolve": "^3.0.0",
  39. "rollup-watch": "^4.3.1",
  40. "ts-jest": "^21.0.0",
  41. "tslint": "^5.7.0",
  42. "typescript": "^2.5.1",
  43. "uglify-js": "^3.1.0"
  44. },
  45. "dependencies": {}
  46. }