-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.39 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
{
"name": "@sqlutils/traverse",
"version": "2.1.1",
"description": "Traverse the SQL AST generated by @sqlutils/parse",
"main": "dist/src/index.js",
"scripts": {
"test": "ts-mocha -p ./tsconfig.json test/setup.ts test/{unit,integration}/**/*.ts -t 30000000 --check-leaks",
"format": "prettier --write --parser typescript \"./**/*.{ts,tsx}\"",
"build": "tsc --version && tsc --pretty",
"build:watch": "npm run build -- --watch",
"prepare": "npm run build && npm run format"
},
"author": "Ethan Resnick <[email protected]> (https://ethanresnick.com/)",
"license": "ISC",
"engines": {
"node": "11.x",
"npm": "6.x"
},
"files": [
"dist/"
],
"dependencies": {
"@sqlutils/parse": "^1.2.1",
"@types/node": "^9.6.48",
"lodash": "^4.17.11"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"devDependencies": {
"@ethanresnick/chai-jest-snapshot": "^2.3.0",
"@types/chai": "^4.1.7",
"@types/expect": "^1.20.4",
"@types/lodash": "^4.14.119",
"@types/mocha": "^5.2.5",
"@types/sinon": "^7.0.13",
"chai": "^4.2.0",
"expect": "^24.5.0",
"mocha": "^5.2.0",
"nodemon": "^1.18.9",
"prettier": "^1.18.2",
"sinon": "^7.3.2",
"ts-mocha": "^2.0.0",
"tslint": "^5.12.1",
"typescript": "^3.6.0-dev.20190727",
"husky": "^1.3.1",
"pretty-quick": "^1.10.0"
}
}