web 3d图形渲染器
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

63 lines
2.2 KiB

  1. {
  2. "name": "tsconfig-paths",
  3. "version": "3.9.0",
  4. "description": "Load node modules according to tsconfig paths, in run-time or via API.",
  5. "main": "lib/index.js",
  6. "types": "lib/index",
  7. "author": "Jonas Kello",
  8. "license": "MIT",
  9. "repository": "https://github.com/dividab/tsconfig-paths",
  10. "devDependencies": {
  11. "@types/chai": "^4.1.4",
  12. "@types/minimist": "^1.2.0",
  13. "@types/mocha": "^5.2.3",
  14. "@types/node": "^6.0.54",
  15. "@types/strip-bom": "^3.0.0",
  16. "@types/strip-json-comments": "^0.0.30",
  17. "chai": "^4.1.2",
  18. "codecov": "^3.1.0",
  19. "husky": "^0.14.3",
  20. "lint-staged": "^4.3.0",
  21. "mocha": "^5.2.0",
  22. "nyc": "^11.4.1",
  23. "prettier": "1.7.4",
  24. "rimraf": "^2.6.2",
  25. "shelljs": "^0.7.5",
  26. "ts-node": "^7.0.0",
  27. "tslint": "^5.8.0",
  28. "typescript": "^2.4.1"
  29. },
  30. "dependencies": {
  31. "@types/json5": "^0.0.29",
  32. "json5": "^1.0.1",
  33. "minimist": "^1.2.0",
  34. "strip-bom": "^3.0.0"
  35. },
  36. "scripts": {
  37. "start": "cd src && ts-node index.ts",
  38. "example:node": "yarn build && cd ./example/node && ts-node -r ../register.js main.ts",
  39. "example:project": "yarn build && ts-node -r ./register.js -P ./example/project/tsconfig.json ./example/project/main.ts",
  40. "example:api": "cd example/api && ts-node main.ts",
  41. "example:perf": "cd example/perf && ts-node main.ts",
  42. "test": "mocha",
  43. "build": "rimraf lib && tsc -p src",
  44. "build:test": "rimraf ./test/js_out && tsc -p test",
  45. "lint": "tslint './{src,tests}/**/*.ts{,x}'",
  46. "verify": "yarn build && yarn lint && yarn coverage",
  47. "coverage": "rimraf coverage .nyc_output && nyc yarn test",
  48. "report-coverage": "codecov -f coverage/*.json",
  49. "precommit": "lint-staged",
  50. "publish:major": "yarn build && node scripts/publish.js major",
  51. "publish:minor": "yarn build && node scripts/publish.js minor",
  52. "publish:patch": "yarn build && node scripts/publish.js patch",
  53. "preversion": "yarn verify",
  54. "postversion": "git push --tags && yarn publish --new-version $npm_package_version && git push && echo \"Successfully released version $npm_package_version!\""
  55. },
  56. "lint-staged": {
  57. "*.ts": [
  58. "tslint",
  59. "prettier --write",
  60. "git add"
  61. ]
  62. }
  63. }