generated from senecajs/seneca-refer
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.91 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.91 KB
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
{
"name": "@seneca/progress",
"version": "0.0.6",
"main": "dist/Progress.js",
"type": "commonjs",
"types": "dist/Progress.d.ts",
"description": "Workflow progress record plugin for the Seneca platform.",
"homepage": "https://github.com/senecajs/seneca-progress",
"keywords": [
"seneca",
"progress"
],
"author": "Richard Rodger - richardrodger.com",
"repository": {
"type": "git",
"url": "git://github.com/senecajs/seneca-progress.git"
},
"scripts": {
"prettier": "prettier --write .",
"test": "node --enable-source-maps --test \"dist-test/**/*.test.js\"",
"test-some": "node --enable-source-maps --test-name-pattern=\"$TEST_PATTERN\" --test \"dist-test/**/*.test.js\"",
"watch": "tsc --build src test -w",
"build": "tsc --build src test",
"doc": "seneca-doc",
"clean": "rm -rf dist dist-test node_modules yarn.lock package-lock.json",
"reset": "npm run clean && npm i && npm run build && npm test",
"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 && npm run repo-publish-quick",
"repo-publish-quick": "npm run build && npm run test && npm run doc && npm run repo-tag && npm publish --access public --registry https://registry.npmjs.org "
},
"license": "MIT",
"files": [
"dist",
"src/**/*.ts",
"LICENSE"
],
"engines": {
"node": ">=22"
},
"devDependencies": {
"@hapi/code": "^9.0.3",
"@seneca/maintain": "^0.1.0",
"@types/node": "^25.3.2",
"prettier": "3.8.1",
"seneca-doc": "^2.1.3",
"seneca-msg-test": "^4.1.0",
"typescript": "^5.9.3"
},
"peerDependencies": {
"@seneca/entity-util": ">=3",
"gubu": ">=9",
"seneca": ">=3||>=4.0.0-rc2",
"seneca-entity": ">=26",
"seneca-promisify": ">=3"
}
}