A work-in-progress SQL parser written in TypeScript
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.

package.json 538B

123456789101112131415161718192021222324
  1. {
  2. "name": "sql",
  3. "version": "1.0.0",
  4. "description": "",
  5. "main": "index.js",
  6. "scripts": {
  7. "test": "mocha",
  8. "format": "tslint --fix ./{src,test}/*.ts",
  9. "repl": "ts-node src/index.ts"
  10. },
  11. "keywords": [],
  12. "author": "Dylan Baker <dylan@simulacrum.party>",
  13. "license": "MIT",
  14. "devDependencies": {
  15. "@types/chai": "^4.1.7",
  16. "@types/mocha": "^5.2.7",
  17. "@types/node": "^12.6.9",
  18. "chai": "^4.2.0",
  19. "mocha": "^6.2.0",
  20. "ts-node": "^8.3.0",
  21. "tslint": "^5.18.0",
  22. "typescript": "^3.5.3"
  23. }
  24. }