-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.51 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.51 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
{
"name": "block-sequence-postgres",
"version": "1.1.0",
"description": "A Postgres implementation of block-sequence",
"main": "index.js",
"scripts": {
"test": "node test/compliance.tests.js | tap-spec",
"lint": "eslint .",
"istanbul": "istanbul cover --report html --report lcov tape -- test/compliance.tests.js",
"codeclimate": "codeclimate-test-reporter < coverage/lcov.info",
"prepush": "npm run lint && npm test",
"docker": "docker run --detach --publish 5432:5432 --name postgres kiasaki/alpine-postgres"
},
"keywords": [
"Block",
"Sequence",
"Id",
"Generator",
"PostgreSQL",
"Postgres"
],
"author": "GuideSmiths",
"license": "ISC",
"devDependencies": {
"block-sequence-compliance-tests": "^2.0.1",
"codeclimate-test-reporter": "^0.5.0",
"eslint": "^3.12.2",
"eslint-config-imperative": "^1.0.0",
"eslint-plugin-imperative": "^1.0.0",
"husky": "^0.13.4",
"istanbul": "^0.4.5",
"tap-spec": "^4.1.1"
},
"dependencies": {
"async": "^2.6.0",
"big-integer": "^1.6.26",
"debug": "^2.6.9",
"lodash": "^4.17.4",
"pg": "^7.4.1",
"promise-polyfill": "^6.1.0",
"safe-json-parse": "^4.0.0"
},
"directories": {
"test": "tests"
},
"repository": {
"type": "git",
"url": "git+https://github.com/guidesmiths/block-sequence-postgres.git"
},
"bugs": {
"url": "https://github.com/guidesmiths/block-sequence-postgres/issues"
},
"homepage": "https://guidesmiths.github.io/block-sequence-postgres/"
}