forked from oguimbal/pg-mem
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
109 lines (109 loc) · 3.83 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
{
"name": "pg-mem",
"version": "1.3.1",
"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 && npm publish lib && npm run release-deno",
"release-deno": "git add -A && git commit -m \"Build deno\" && 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 [email protected]: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/oguimbal/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"
],
"license": "MIT",
"dependencies": {
"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": "^1.1.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",
"@oguimbal/pg-promise": "^10.5.8",
"@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/react": "^16.9.43",
"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",
"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.3.0",
"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",
"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.25",
"typescript": "^3.9.6",
"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"
},
"nyc": {
"include": [
"src/**/*.ts"
],
"exclude": [
"src/**/*.spec.ts"
],
"instrument": false,
"sourceMap": false
}
}