-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
132 lines (132 loc) Β· 4.38 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
{
"name": "sql-fragment",
"version": "0.0.1",
"description": "Write SQL queries for π Postgres in safe way",
"keywords": [
"SQL",
"sql tag",
"sql template string",
"sql tagged template string",
"sql query",
"postgres",
"pg"
],
"main": "./lib/index.js",
"module": "./esm5/index.js",
"es2015": "./esm2015/index.js",
"typings": "./types/index.d.ts",
"sideEffects": false,
"repository": {
"type": "git",
"url": "https://github.com/the-gear/sql-fragment"
},
"author": "Pavel Lang <[email protected]>",
"contributors": [],
"license": "MIT",
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"engines": {
"node": ">=8.5",
"npm": ">=6.0",
"yarn": ">=1.0"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"husky": {
"hooks": {
"commit-msg": "commitlint --config config/commitlint.config.js -E HUSKY_GIT_PARAMS",
"pre-commit": "yarn run lint:fix && lint-staged"
}
},
"lint-staged": {
"**/*.{ts,tsx,js,jsx,css,scss,sass,less,md}": [
"prettier --write",
"git add"
]
},
"devDependencies": {
"@commitlint/cli": "^7.3.2",
"@commitlint/config-conventional": "^7.3.1",
"@types/invariant": "^2.2.29",
"@types/jest": "^23.3.12",
"@types/node": "^8.10.*",
"@types/pg": "^7.4.11",
"@types/prettier": "^1.15.2",
"@types/webpack-config-utils": "^2.3.0",
"brotli-size": "^0.0.3",
"commitizen": "^3.0.5",
"cross-var": "^1.1.0",
"cz-conventional-changelog": "^2.1.0",
"gzip-size": "^5.0.0",
"husky": "^1.3.0",
"jest": "^23.6.0",
"jest-watch-typeahead": "^0.2.0",
"kleur": "^3.0.1",
"lint-staged": "^8.1.0",
"pg": "^7.8.0",
"prettier": "^1.15.3",
"pretty-bytes": "^5.1.0",
"rollup": "^1.1.0",
"rollup-plugin-commonjs": "^9.2.0",
"rollup-plugin-json": "^3.1.0",
"rollup-plugin-node-resolve": "^4.0.0",
"rollup-plugin-replace": "^2.1.0",
"rollup-plugin-sourcemaps": "^0.4.2",
"rollup-plugin-terser": "^4.0.2",
"rollup-plugin-uglify": "^6.0.1",
"shx": "^0.3.2",
"standard-version": "^4.4.0",
"ts-jest": "^23.10.5",
"tslib": "^1.9.3",
"tslint": "^5.12.1",
"tslint-config-prettier": "^1.17.0",
"tslint-config-standard": "^8.0.1",
"tslint-etc": "^1.2.12",
"tslint-react": "^3.6.0",
"typedoc": "^0.14.1",
"typescript": "^3.2.2",
"webpack-config-utils": "^2.3.1"
},
"peerDependencies": {
"pg": "^7.8.0",
"tslib": "^1.9.0"
},
"dependencies": {
"invariant": "^2.2.4"
},
"scripts": {
"cleanup": "shx rm -rf dist",
"prebuild": "yarn run cleanup && yarn run verify",
"build": "tsc && tsc --module esnext --target es5 --outDir dist/esm5 && tsc --target es2018 --outDir dist/esm2015 && rollup -c && rollup -c --environment NODE_ENV:production",
"postbuild": "node scripts/copy.js && yarn run size",
"docs": "typedoc -p . --theme minimal --target 'es6' --excludeNotExported --excludePrivate --ignoreCompilerErrors --exclude \"**/src/**/__tests__/*.*\" --out docs src/",
"test": "jest",
"test:watch": "yarn test --watch",
"test:coverage": "yarn test --coverage",
"test:ci": "yarn test --ci",
"validate-js": "tsc -p ./config && tsc -p ./scripts",
"verify": "yarn run validate-js && yarn run style && yarn run test:ci",
"commit": "git-cz",
"style": "yarn run format --list-different && yarn run lint",
"style:fix": "yarn run format:fix && yarn run lint:fix",
"format": "prettier \"**/*.{ts,tsx,js,jsx,css,scss,sass,less,md}\"",
"format:fix": "yarn run format --write",
"lint": "tslint --project tsconfig.json --format codeFrame",
"lint:fix": "yarn run lint --fix",
"prerelease": "yarn run build",
"release": "standard-version",
"release:dry": "standard-version --dry-run",
"postrelease": "node scripts/copy.js && node scripts/build && yarn run release:github && yarn run release:npm",
"release:github": "git push --no-verify --follow-tags origin master",
"release:npm": "cd dist && npm publish",
"release:preflight": "cd dist && npm pack",
"size": "node scripts/file-size.js ./dist/bundles/index.umd.min.js ./dist/bundles/index.esm.min.js",
"size:umd": "node scripts/file-size.js ./dist/bundles/index.umd.min.js",
"size:fesm": "node scripts/file-size.js ./dist/bundles/index.esm.min.js"
}
}