forked from oguimbal/pg-mem
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
142 lines (142 loc) · 4.52 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
133
134
135
136
137
138
139
140
141
142
{
"name": "@klahdenk/pg-mem",
"version": "2.1.12",
"description": "A memory version of postgres",
"main": "index.js",
"scripts": {
"start": "webpack --config webpack.config.js",
"build": "rimraf lib && webpack --config webpack.config.js --prod && npm run build-types",
"build-types": "rimraf lib/types && tsc --project tsconfig.json && copyfiles -u 2 \"lib-types/src/**/*.ts\" lib/types && rimraf lib/types/tests && rimraf lib-types && echo \"export * from './types';\" >> lib/index.d.ts",
"release": "git diff --exit-code && npm run test && npm run cover && npm run build && npm run build:deno && deno run deno-test.ts && cd lib && npm publish && cd .. && npm run release-deno",
"release-deno": "git add -A && git commit -m \"Build deno [autogenerated commit]\" && PACKAGE_VERSION=$(cat package.json | grep \\\"version\\\" | head -1 | awk -F: '{ print $2 }' | sed 's/[\",]//g' | tr -d '[[:space:]]') && git tag $PACKAGE_VERSION && git push --tags",
"start:playground": "webpack-dev-server --hot --config playground.webpack.config.js",
"build:playground": "webpack --config playground.webpack.config.js --prod",
"release:playground": "npm run build:playground && cd dist && git init && git add -A && git commit -m\"initial\" && git remote add origin git@github.com:oguimbal/pg-mem-playground.git && git push --set-upstream origin master --force",
"typecheck": "tsc --project tsconfig.json --noEmit",
"test": "mochapack src/**/*.spec.ts",
"build:deno": "node ./deno-transpile.js --copy && node ./deno-transpile.js --process",
"cover": "cross-env NODE_ENV=coverage nyc --reporter=lcov --reporter=text npm run test"
},
"author": "Olivier Guimbal",
"repository": "https://github.com/klahdenk/pg-mem",
"issues": "https://github.com/oguimbal/pg-mem/issues",
"keywords": [
"postgres",
"pg-mock",
"mock",
"memory",
"db",
"database",
"pg",
"typeorm",
"pg-promise",
"pg-native",
"unit test",
"ut",
"sql",
"pgsql",
"postgresql"
],
"publishConfig": {
"registry": "https://npm.pkg.github.com"
},
"license": "MIT",
"dependencies": {
"@mikro-orm/core": "^4.5.3",
"@mikro-orm/postgresql": "^4.5.3",
"functional-red-black-tree": "^1.0.1",
"immutable": "^4.0.0-rc.12",
"lru-cache": "^6.0.0",
"moment": "^2.27.0",
"object-hash": "^2.0.3",
"pgsql-ast-parser": "^9.2.1"
},
"devDependencies": {
"@babel/cli": "^7.10.5",
"@babel/core": "^7.10.5",
"@babel/preset-env": "^7.10.4",
"@hot-loader/react-dom": "^16.13.0",
"@types/chai": "^4.2.11",
"@types/lru-cache": "^5.1.0",
"@types/mocha": "^8.0.0",
"@types/node": "^14.0.23",
"@types/object-hash": "^1.3.3",
"@types/pg": "^7.14.9",
"@types/react": "^16.9.43",
"@types/uuid": "^8.3.0",
"babel": "^6.23.0",
"babel-loader": "^8.1.0",
"babel-preset-react-app": "^9.1.2",
"chai": "^4.2.0",
"chai-shallow-deep-equal": "^1.4.6",
"copy-webpack-plugin": "^6.0.3",
"copyfiles": "^2.4.0",
"cross-env": "^7.0.2",
"css-loader": "^4.1.0",
"dedent": "^0.7.0",
"file-loader": "^6.0.0",
"html-webpack-plugin": "^4.3.0",
"istanbul-instrumenter-loader": "^3.0.1",
"knex": "^0.21.15",
"mocha": "^8.0.1",
"mochapack": "^2.0.3",
"monaco-editor": "^0.20.0",
"monaco-editor-webpack-plugin": "^1.9.0",
"nyc": "^15.1.0",
"pg": "^8.5.1",
"pg-promise": "^10.8.7",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-hot-loader": "^4.12.21",
"react-monaco-editor": "^0.39.1",
"reactjs-popup": "^1.5.0",
"rimraf": "^3.0.2",
"sequelize": "^6.3.5",
"slonik": "^23.0.1",
"source-map-support": "^0.5.19",
"style-loader": "^1.2.1",
"ts-loader": "^8.0.0",
"ts-node": "^8.10.2",
"typeorm": "0.2.29",
"typescript": "^3.9.6",
"uuid": "^8.3.2",
"vscode-mocha-hmr": "^1.0.0",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.11.0",
"webpack-node-externals": "^1.7.2"
},
"peerDependencies": {
"pg-promise": "^10.8.7",
"typeorm": "0.2.29",
"slonik": "^23.0.1",
"knex": "^0.21.15"
},
"peerDependenciesMeta": {
"pg-promise": {
"optional": true
},
"typeorm": {
"optional": true
},
"slonik": {
"optional": true
},
"knex": {
"optional": true
},
"mikro-orm": {
"optional": true
}
},
"nyc": {
"include": [
"src/**/*.ts"
],
"exclude": [
"src/**/*.spec.ts"
],
"instrument": false,
"sourceMap": false
}
}