This repository was archived by the owner on Nov 2, 2019. It is now read-only.
forked from ArkEcosystem/core
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 2.17 KB
/
Copy pathpackage.json
File metadata and controls
56 lines (56 loc) · 2.17 KB
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
{
"name": "@arkecosystem/core-database-postgres",
"description": "PostgreSQL integration for Ark Core",
"version": "2.1.2",
"contributors": [
"Brian Faust <brian@ark.io>"
],
"license": "MIT",
"main": "dist/index",
"types": "dist/index",
"files": [
"dist"
],
"scripts": {
"prepublishOnly": "yarn build",
"pretest": "bash ../../scripts/pre-test.sh",
"compile": "../../node_modules/typescript/bin/tsc",
"build": "yarn clean && yarn copy && yarn compile",
"build:watch": "yarn clean && yarn copy && yarn compile -w",
"clean": "del dist",
"docs": "../../node_modules/typedoc/bin/typedoc src --out docs",
"lint": "../../node_modules/tslint/bin/tslint -c ../../tslint.json 'src/**/*.ts' '__tests__/**/*.ts' --fix",
"test": "cross-env CORE_ENV=test jest --runInBand --forceExit",
"test:coverage": "cross-env CORE_ENV=test jest --coverage --coveragePathIgnorePatterns='/(defaults.ts|index.ts)$' --runInBand --forceExit",
"test:debug": "cross-env CORE_ENV=test node --inspect-brk ../../node_modules/.bin/jest --runInBand",
"test:watch": "cross-env CORE_ENV=test jest --runInBand --watch",
"test:watch:all": "cross-env CORE_ENV=test jest --runInBand --watchAll",
"copy": "cd src/ && cpy './**/*.sql' --parents ../dist/ && cd ../",
"updates": "../../node_modules/npm-check-updates/bin/npm-check-updates -a"
},
"dependencies": {
"@arkecosystem/core-interfaces": "^2.1.0",
"@arkecosystem/core-container": "^2.1.0",
"@arkecosystem/core-database": "^2.1.0",
"@arkecosystem/core-utils": "^2.1.0",
"@arkecosystem/crypto": "^2.1.0",
"@types/bluebird": "^3.5.25",
"@types/lodash.chunk": "^4.2.4",
"@types/pluralize": "^0.0.29",
"bluebird": "^3.5.3",
"cpy-cli": "^2.0.0",
"lodash.chunk": "^4.2.0",
"pg-promise": "^8.5.4",
"pluralize": "^7.0.0",
"sql": "^0.78.0"
},
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">=10.x"
},
"jest": {
"preset": "../../jest-preset.json"
}
}