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 502B

1234567891011121314151617181920212223
  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. },
  10. "keywords": [],
  11. "author": "Dylan Baker <dylan@simulacrum.party>",
  12. "license": "MIT",
  13. "devDependencies": {
  14. "@types/chai": "^4.1.7",
  15. "@types/mocha": "^5.2.7",
  16. "@types/node": "^12.6.9",
  17. "chai": "^4.2.0",
  18. "mocha": "^6.2.0",
  19. "ts-node": "^8.3.0",
  20. "tslint": "^5.18.0",
  21. "typescript": "^3.5.3"
  22. }
  23. }