-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
65 lines (65 loc) · 2.43 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
{
"name": "seneca-store-test",
"version": "6.0.0",
"description": "Standard test cases for seneca stores",
"main": "store-test.js",
"scripts": {
"test":"echo fix-test",
"x-test": "lab -v -P test -L -t 80 -r console -o stdout -r html -o test/coverage.html -r lcov -o test/lcov.info",
"test-some": "lab -v -P test -L -r console -g ",
"coveralls": "lab -s -P test -r lcov | coveralls",
"coverage": "lab -v -P test -t 80 -r html > docs/coverage.html",
"prettier": "prettier --write --no-semi --single-quote *.js lib/*.js test/*.js",
"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=https://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=https://registry.npmjs.org"
},
"repository": {
"type": "git",
"url": "git://github.com/senecajs/seneca-store-test.git"
},
"keywords": [
"seneca",
"store",
"test"
],
"author": "Richard Rodger (http://richardrodger.com)",
"contributors": [
"Efim Bogdanovsky (https://github.com/lilsweetcaligula)",
"Paolo Chiodi (https://github.com/paolochiodi)",
"Michele Capra (https://github.com/piccoloaiutante)",
"Mircea Alexandru (https://www.alexandrumircea.ro/)",
"Mihai Dima (https://github.com//mihaidma)",
"Shane Lacey (https://github.com/shanel262)",
"Adrien Becchis (https://github.com/AdrieanKhisbe)",
"David Mark Clements (https://github.com/davidmarkclements)",
"Maxence Dalmais (https://github.com/maxired)",
"Guy Ellis (https://github.com/guyellis",
"Kilian Ciuffolo (https://github.com/kilianc)",
"Emer Rutherford (https://github.com/eeswr)"
],
"license": "MIT",
"files": [
"README.md",
"LICENSE",
"store-test.js",
"lib"
],
"dependencies": {
"async": "3.2.5",
"chai": "4.3.7",
"nid": "2.0.1",
"seneca-promisify": "3.7.2"
},
"devDependencies": {
"@hapi/code": "9.0.3",
"@hapi/lab": "25.2.0",
"coveralls": "3.1.1",
"prettier": "^3.3.2",
"seneca": "plugin",
"seneca-entity": "27.2.0",
"seneca-mem-store": "9.3.0"
}
}