-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
70 lines (70 loc) · 2.26 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
{
"name": "seneca-entity",
"main": "dist/entity.js",
"version": "28.1.0",
"type": "commonjs",
"types": "dist/entity.d.ts",
"description": "Entity plugin for seneca",
"keywords": [
"seneca",
"entity",
"plugin"
],
"license": "MIT",
"homepage": "http://senecajs.org",
"author": "Richard Rodger (http://richardrodger.com/)",
"contributors": [
"Richard Rodger (https://github.com/rjrodger)",
"Mihai Dima (https://github.com/mihaidma)",
"Dean McDonnell (https://github.com/mcdonnelldean)",
"Wyatt Preul (https://github.com/geek)",
"Shane Lacey (https://github.com/shanel262)",
"Emer Rutherford (https://github.com/eeswr)",
"Nicolás Fantone (https://github.com/nfantone)",
"Leonardo Cunha (https://github.com/LeonNimoy)"
],
"files": [
"LICENSE",
"README.md",
"src",
"dist"
],
"repository": {
"type": "git",
"url": "https://github.com/senecajs/seneca-entity.git"
},
"scripts": {
"test": "jest --coverage",
"test-some": "jest -t",
"test-watch": "jest --coverage --watchAll",
"watch": "tsc -w -d",
"build": "tsc -d",
"prettier": "prettier --write --no-semi --single-quote src/**/*.ts test/*.js",
"reset": "npm run clean && npm i && npm run build && npm test",
"clean": "rm -rf node_modules dist 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 run build && npm test && npm run repo-tag && npm publish --access public --registry=https://registry.npmjs.org"
},
"engines": {
"node": ">=16"
},
"dependencies": {
"gubu": "^8.2.1",
"seneca-mem-store": "^9.4.0"
},
"peerDependencies": {
"seneca": ">=3||>=4.0.0-rc2",
"seneca-promisify": ">=3"
},
"devDependencies": {
"@seneca/maintain": "^0.1.0",
"@types/jest": "^29.5.12",
"esbuild": "^0.23.0",
"esbuild-jest": "^0.5.0",
"jest": "^29.7.0",
"prettier": "^3.3.2",
"seneca-msg-test": "^4.1.0",
"typescript": "^5.5.3"
}
}