-
Notifications
You must be signed in to change notification settings - Fork 38
/
package.json
103 lines (103 loc) · 3.15 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
{
"name": "typeorm-aurora-data-api-driver",
"version": "0.0.0-development",
"description": "",
"keywords": [],
"main": "dist/typeorm-aurora-data-api-driver.umd.js",
"module": "dist/typeorm-aurora-data-api-driver.es5.js",
"typings": "dist/types/typeorm-aurora-data-api-driver.d.ts",
"files": [
"dist"
],
"author": "Arseny Yankovsky <[email protected]>",
"repository": {
"type": "git",
"url": "https://github.com/ArsenyYankovsky/typeorm-aurora-data-api-driver"
},
"license": "MIT",
"engines": {
"node": ">=6.0.0"
},
"scripts": {
"lint": "eslint \"src/**/*.ts\" \"test/**/*.ts\"",
"prebuild": "rimraf dist",
"build": "tsc --p tsconfig.build.json --module commonjs && rollup --bundleConfigAsCjs -c rollup.config.js && typedoc --out docs src/typeorm-aurora-data-api-driver.ts",
"start": "rollup -c rollup.config.ts -w",
"test": "jest",
"test:unit": "jest unit",
"test:mysql-func": "jest mysql-func --runInBand --detectOpenHandles",
"test:pg-func": "jest pg-func --runInBand --detectOpenHandles",
"test:watch": "jest --watch",
"test:prod": "npm run lint && npm run test -- --no-cache",
"deploy-docs": "ts-node tools/gh-pages-publish",
"report-coverage": "cat ./coverage/lcov.info | coveralls",
"commit": "git-cz",
"semantic-release": "semantic-release",
"semantic-release-prepare": "ts-node tools/semantic-release-prepare"
},
"config": {
"commitizen": {
"path": "node_modules/cz-conventional-changelog"
}
},
"jest": {
"verbose": true,
"transform": {
".(ts|tsx)": "ts-jest"
},
"testEnvironment": "node",
"testRegex": "(/__tests__/.*|\\.(test|spec))\\.(ts|tsx|js)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js"
],
"collectCoverage": false
},
"devDependencies": {
"@aws-sdk/client-rds-data": "^3.490.0",
"@commitlint/cli": "^7.1.2",
"@commitlint/config-conventional": "^7.1.2",
"@types/jest": "^29.5.11",
"@types/node": "^10.11.0",
"@types/sqlstring": "^2.3.2",
"@typescript-eslint/eslint-plugin": "^6.17.0",
"@typescript-eslint/parser": "^6.17.0",
"colors": "^1.3.2",
"commitizen": "^4.3.0",
"coveralls": "^3.1.1",
"cross-env": "^5.2.0",
"cz-conventional-changelog": "^2.1.0",
"dotenv": "^8.2.0",
"eslint": "^8.56.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jest": "^27.6.1",
"husky": "^1.0.1",
"jest": "^29.7.0",
"jest-config": "^29.7.0",
"lodash.camelcase": "^4.3.0",
"prompt": "^1.0.0",
"replace-in-file": "^3.4.2",
"rimraf": "^2.6.2",
"rollup": "^4.9.2",
"rollup-plugin-commonjs": "^9.1.8",
"rollup-plugin-json": "^3.1.0",
"rollup-plugin-node-resolve": "^3.4.0",
"rollup-plugin-sourcemaps": "^0.4.2",
"rollup-plugin-typescript2": "^0.36.0",
"semantic-release": "^22.0.12",
"shelljs": "^0.8.3",
"ts-jest": "^29.1.1",
"ts-node": "^10.7.0",
"typedoc": "^0.25.6",
"typeorm": "^0.3.19",
"typescript": "^4.9.5"
},
"dependencies": {
"sqlstring": "^2.3.3"
},
"peerDependencies": {
"@aws-sdk/client-rds-data": "^3.490.0"
}
}