generated from senecajs/seneca-webflow-provider
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
73 lines (73 loc) · 2.25 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
{
"name": "@seneca/bud-provider",
"version": "0.6.2",
"main": "dist/bud-provider.js",
"type": "commonjs",
"types": "dist/bud-provider.d.ts",
"description": "Seneca entity provider for the Bud API.",
"homepage": "https://github.com/senecajs/seneca-bud-provider",
"keywords": [
"seneca",
"bud",
"bud-provider",
"cms"
],
"author": "Richard Rodger - richardrodger.com",
"contributors": [
"Ríona Stokes https://github.com/rionastokes",
"Richard Rodger - richardrodger.com"
],
"repository": {
"type": "git",
"url": "git://github.com/senecajs/seneca-bud-provider.git"
},
"scripts": {
"test": "jest --coverage",
"test-nocov": "jest --coverage",
"test-some": "jest -t",
"test-watch": "jest --coverage --watchAll",
"watch": "tsc -w -d",
"build": "tsc -d",
"doc": "seneca-doc -p @seneca/provider",
"clean": "rm -rf node_modules dist 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": ">=16"
},
"peerDependencies": {
"@seneca/env": ">=0.2",
"@seneca/provider": ">=2",
"seneca": ">=3",
"seneca-entity": ">=25",
"seneca-promisify": ">=3"
},
"devDependencies": {
"@seneca/doc": "^6.0.0",
"@seneca/env": "^0.2.0",
"@seneca/evervault-provider": "^0.3.1",
"@seneca/maintain": "^0.1.0",
"@seneca/provider": "^2.0.1",
"@seneca/user": "^6.3.0",
"@types/jest": "^29.5.11",
"@types/node": "^20.11.13",
"esbuild": "^0.20.0",
"esbuild-jest": "^0.5.0",
"jest": "^29.7.0",
"node-fetch": "^2",
"seneca": "^3.33.0",
"seneca-entity": "^25.1.0",
"seneca-msg-test": "^4.1.0",
"seneca-promisify": "^3.7.1",
"typescript": "^5.3.3"
}
}