-
Notifications
You must be signed in to change notification settings - Fork 30
/
package.json
82 lines (82 loc) · 3.15 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
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "@seneca/user",
"description": "User management plugin for Seneca",
"version": "6.4.0",
"keywords": [
"seneca",
"user",
"plugin"
],
"author": {
"name": "Richard Rodger",
"email": "[email protected]",
"url": "http://richardrodger.com/"
},
"license": "MIT",
"main": "user.js",
"scripts": {
"test": "lab -v -L -t 90 -P test -I AggregateError,atob,btoa,AbortController,AbortSignal,EventTarget,Event,MessageChannel,MessagePort,MessageEvent,performance -r console -o stdout -r html -o test/coverage.html",
"test-some": "lab -v -L -P test -g",
"test-msgs": "lab -t 90 --coverage-exclude lib/hasher.js -P messages.test -r console -o stdout -r html -o test/coverage.html",
"doc": "seneca-doc",
"coveralls": "lab -s -P test -I AggregateError,atob,btoa,DOMException,AbortController,AbortSignal,EventTarget,Event,MessageChannel,MessagePort,MessageEvent,performance,structuredClone -r lcov > ./coverage/lcov.info",
"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-quick": "npm run prettier && npm test && npm run repo-tag && npm publish --access public --registry=https://registry.npmjs.org",
"repo-publish": "npm run clean && npm i --registry=https://registry.npmjs.org && npm run repo-publish-quick"
},
"files": [
"LICENSE",
"README.md",
"user.js",
"user-docs.js",
"lib"
],
"contributors": [
"Mircea Alexandru <[email protected]> (http://www.alexandrumircea.ro)",
"Cristian Kiss <[email protected]> (https://github.com/ckiss)",
"Mihai Dima <[email protected]> (https://github.com/mihaidma)",
"Adrien Becchis (https://github.com/AdrieanKhisbe)",
"Shane Lacey (https://github.com/shanel262)",
"Otávio Augusto Soares (https://github.com/otaviosoares)",
"Dean McDonnell (https://github.com/mcdonnelldean)",
"Nicolas Herment (https://github.com/nherment)",
"Paolo Chiodi (https://github.com/paolochiodi)",
"Emer Rutherford (https://github.com/eeswr)",
"Matteo Collina (https://github.com/mcollina)",
"Wyatt Preul (https://github.com/geek)",
"rithdmc (https://github.com/rithdmc)",
"Guy Ellis (https://github.com/guyellis)",
"Cian Butler (https://github.com/butlerx)",
"Sorin Silaghi (https://github.com/sorin7486)"
],
"engines": {
"node": ">=12"
},
"dependencies": {
"uuid": "^10.0.0"
},
"devDependencies": {
"@hapi/code": "9",
"@hapi/lab": "25",
"coveralls": "^3.1.1",
"prettier": "^3.3.1",
"seneca-doc": "^2.1.3",
"seneca-msg-test": "^4.1.0",
"@seneca/maintain": "^0.1.0"
},
"peerDependencies": {
"seneca": ">=3||>=4.0.0-rc2",
"seneca-promisify": ">=3",
"seneca-entity": ">=26"
},
"repository": {
"type": "git",
"url": "https://github.com/senecajs/seneca-user.git"
},
"pre-commit": [
"test"
]
}