-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
37 lines (37 loc) · 1.06 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
{
"name": "amphora-storage-postgres",
"version": "2.1.1",
"description": "A storage module for Amphora that leverages Postgres and Redis",
"main": "index.js",
"scripts": {
"eslint": "eslint --max-warnings 0 postgres redis services",
"integration": "./tests/integration.sh",
"integration-ci": "npx jest --forceExit --runInBand tests/integration.test.js",
"jest": "jest --testPathIgnorePatterns tests/*",
"test": "npm run eslint && npm run jest",
"release": "./.circleci/scripts/release.sh"
},
"repository": {
"type": "git",
"url": "https://github.com/clay/amphora-storage-postgres.git"
},
"author": "New York Media",
"license": "MIT",
"dependencies": {
"amphora-fs": "^2.0.0",
"bluebird": "^3.5.1",
"clay-log": "^1.3.0",
"clayutils": "^3.0.0",
"highland": "^2.13.0",
"ioredis": "^4.2.0",
"knex": "^2.5.1",
"pg": "^8.11.3",
"pg-query-stream": "^4.5.3",
"postgres-migrations": "^5.3.0"
},
"devDependencies": {
"coveralls": "^3.0.1",
"eslint": "^5.0.1",
"jest": "^23.6.0"
}
}