-
Notifications
You must be signed in to change notification settings - Fork 43
/
package.json
69 lines (69 loc) · 2.54 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
{
"name": "seneca-mongo-store",
"version": "5.0.1",
"description": "Seneca data store plugin for MongoDB",
"main": "mongo-store.js",
"scripts": {
"test": "lab -v -P test -L -t 85 -I globalThis -r console -o stdout -r html -o test/coverage.html",
"test-some": "lab -v -P test -L -I globalThis -r console -g ",
"prettier": "prettier --write --no-semi --single-quote *.js test/*.js",
"coveralls": "lab -s -P test -r lcov | coveralls",
"coverage": "lab -v -P test -L -t 85 -r html > docs/coverage.html",
"build": "docker-compose build",
"start": "docker-compose up",
"stop": "docker-compose kill",
"annotate": "docco mongo-store.js -o docs/annotated",
"reset": "npm run clean && npm i && npm test",
"clean": "rm -rf node_modules package-lock.json yarn.lock",
"repo-tag": "REPO_VERSION=`node -e \"console.log(require('./package').version)\"` && echo TAG: v$REPO_VERSION && git commit -a -m v$REPO_VERSION && git push && git tag v$REPO_VERSION && git push --tags;",
"repo-publish": "npm run clean && npm i --registry=http://registry.npmjs.org && npm run repo-publish-quick",
"repo-publish-quick": "npm run prettier && npm test && npm run repo-tag && npm publish --access public --registry=http://registry.npmjs.org"
},
"repository": {
"type": "git",
"url": "https://github.com/senecajs/seneca-mongo-store"
},
"keywords": [
"seneca",
"plugin",
"store",
"mongo",
"mongodb",
"json"
],
"author": "Richard Rodger (http://richardrodger.com)",
"contributors": [
"Richard Rodger (http://richardrodger.com)",
"Efim Bogdanosky (https://github.com/lilsweetcaligula)",
"Peter Elger (https://github.com/pelger)",
"Cristian Ianto (https://github.com/iantocristian)",
"Mircea Alexandru (https://github.com/mirceaalexandru)",
"Dean McDonnell (https://github.com/mcdonnelldean)",
"Maxence Dalmais (https://github.com/maxired)",
"Mihai Dima (https://github.com/mihaidma)",
"Wyatt Preul (https://github.com/geek)",
"Paolo Chiodi (https://github.com/paolochiodi)",
"Shane Lacey (https://github.com/shanel262)",
"Oisín Hennessy (https://github.com/code-jace)"
],
"license": "MIT",
"dependencies": {
"mongodb": "^3.7.3"
},
"devDependencies": {
"@hapi/code": "9.0.2",
"@hapi/lab": "25.0.1",
"async": "3.2.4",
"coveralls": "3.1.1",
"prettier": "2.8.0",
"seneca": "3.29.0",
"seneca-entity": "18.4.0",
"seneca-store-test": "5.1.0"
},
"files": [
"lib/**/*.js",
"LICENSE.txt",
"README.md",
"mongo-store.js"
]
}