-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
76 lines (76 loc) · 1.6 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "@sequencework/sql",
"version": "2.3.1",
"main": "dist/sql.js",
"types": "dist/sql.d.ts",
"license": "MIT",
"description": "Javascript tag to format SQL template literals",
"keywords": [
"sql",
"template-literals",
"node-postgres",
"pg"
],
"files": [
"pg",
"dist"
],
"scripts": {
"build": "tsc",
"clean": "rimraf dist coverage",
"test": "jest",
"prettier": "prettier --write '**/*.{ts,js,json,css,md}' --ignore-path .gitignore",
"lint": "tslint -c tslint.json -p tsconfig.json -t stylish",
"publish:latest": "yarn build && yarn publish",
"publish:beta": "yarn build && yarn publish --tag beta"
},
"devDependencies": {
"@types/jest": "^23.3.2",
"codecov": "3.1.0",
"husky": "3.0.1",
"jest": "^23.5.0",
"lint-staged": "9.2.1",
"prettier": "1.18.2",
"rimraf": "^2.6.2",
"ts-jest": "^23.1.4",
"tslint": "^5.11.0",
"tslint-config-prettier": "^1.15.0",
"typescript": "^3.0.3"
},
"dependencies": {},
"jest": {
"collectCoverage": true,
"transform": {
"^.+\\.ts$": "ts-jest"
},
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.ts$",
"moduleFileExtensions": [
"ts",
"js",
"json",
"node"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"prettier": {
"printWidth": 80,
"tabWidth": 2,
"singleQuote": true,
"semi": false
},
"lint-staged": {
"*.ts": [
"prettier --write",
"tslint",
"git add"
],
"*.{ts,js,json,css,md}": [
"prettier --write",
"git add"
]
}
}