-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.53 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
{
"name": "sqigil",
"version": "0.4.0",
"description": "SQigiL: Postgres SQL template string",
"main": "dist/index.js",
"scripts": {
"prepare": "npm run build",
"prepublishOnly": "npm run test",
"preversion": "npm run build-docs && git add docs && git commit -m 'Update docs'",
"build": "rimraf 'dist' && tsc -b tsconfig-build.json",
"build-docs": "typedoc --out docs --exclude '**/*.spec.*' --mode file ./src/index.ts",
"cover-ci": "jest --coverage --coverageReporters=text-lcov | coveralls",
"cover": "jest --coverage",
"lint": "eslint --ext ts src",
"test": "jest"
},
"author": "Tony Wooster <[email protected]>",
"homepage": "https://github.com/twooster/sqigil#readme",
"bugs": {
"url": "https://github.com/twooster/sqigil/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/twooster/sqigil.git"
},
"license": "MIT",
"devDependencies": {
"@types/jest": "^26.0.24",
"@types/node": "^16.3.2",
"@typescript-eslint/eslint-plugin": "^4.28.3",
"@typescript-eslint/parser": "^4.28.3",
"coveralls": "^3.1.1",
"eslint": "^7.30.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-jest": "^24.3.6",
"jest": "^27.0.6",
"rimraf": "^3.0.2",
"ts-jest": "^27.0.3",
"typedoc": "^0.21.4",
"typescript": "^4.3.5"
},
"files": [
"dist"
],
"keywords": [
"sql",
"postgres",
"template",
"format",
"escape",
"string"
],
"typings": "dist/index.d.ts"
}