-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
55 lines (55 loc) · 1.56 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
{
"name": "block-sequence-mongo",
"version": "2.0.0",
"description": "A mongo implementation of block-sequence",
"main": "index.js",
"scripts": {
"coverage": "nyc --report html --reporter lcov --reporter text-summary npm test",
"codeclimate": "(test -e .codeclimate && npm run coverage && source .codeclimate && codeclimate-test-reporter < coverage/lcov.info) || echo skipping codeclimate",
"test": "node test/compliance.tests.js | tap-spec",
"lint": "eslint .",
"docker": "docker run --detach --publish 27017:27017 --name mongo mvertes/alpine-mongo:3.2.10-3"
},
"keywords": [
"Block",
"Sequence",
"Id",
"Generator",
"Mongo"
],
"author": "GuideSmiths",
"license": "ISC",
"devDependencies": {
"block-sequence-compliance-tests": "^2.0.1",
"eslint": "^6.5.1",
"eslint-config-imperative": "^3.0.0",
"eslint-plugin-imperative": "^3.0.0",
"husky": "^3.0.8",
"nyc": "^14.1.1",
"tap-spec": "^5.0.0"
},
"dependencies": {
"async": "^3.1.0",
"big-integer": "^1.6.25",
"debug": "^3.1.0",
"lodash": "^4.17.15",
"mongodb": "^3.0.11",
"safe-json-parse": "^4.0.0"
},
"directories": {
"test": "test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/guidesmiths/block-sequence-mongo.git"
},
"bugs": {
"url": "https://github.com/guidesmiths/block-sequence-mongo/issues"
},
"homepage": "https://guidesmiths.github.io/block-sequence-mongo/",
"husky": {
"hooks": {
"pre-push": "npm run lint && npm test && npm run codeclimate"
}
}
}