package.json 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  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. },
  17. "jest": {
  18. "moduleFileExtensions": [ "ts", "js" ],
  19. "transform": { "\\.ts$": "<rootDir>/node_modules/ts-jest/preprocessor.js" },
  20. "testRegex": "\\.spec\\.ts$"
  21. },
  22. "author": "",
  23. "license": "MIT",
  24. "devDependencies": {
  25. "@types/jest": "latest",
  26. "@types/node": "^8.0.25",
  27. "jest": "^20.0.4",
  28. "rollup": "^0.49.2",
  29. "rollup-plugin-buble": "^0.15.0",
  30. "rollup-plugin-commonjs": "^8.2.0",
  31. "rollup-plugin-json": "^2.3.0",
  32. "rollup-plugin-node-resolve": "^3.0.0",
  33. "rollup-watch": "^4.3.1",
  34. "ts-jest": "^20.0.14",
  35. "tslint": "^5.7.0",
  36. "typescript": "^2.5.1",
  37. "uglify-js": "^3.0.28",
  38. "webpack": "^3.5.5"
  39. },
  40. "dependencies": {}
  41. }