forked from senecajs/seneca-notion-provider
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 loc) · 2.08 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/notion-provider",
"version": "0.2.0",
"main": "dist/notion-provider.js",
"type": "commonjs",
"description": "Seneca entity provider for the Notion API",
"homepage": "https://github.com/senecajs/seneca-notion-provider",
"directories": {
"test": "test"
},
"keywords": [
"seneca",
"notion",
"notion-provider"
],
"author": "Richard Rodger - richardrodger.com",
"contributors": [
"Aleksandar Milenkovic - [email protected]"
],
"repository": {
"type": "git",
"url": "git://github.com/senecajs/seneca-notion-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 FIX-broken",
"clean": "rm -rf node_modules yarn.lock package-lock.json",
"reset": "npm run clean && npm i && 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": ">=14"
},
"dependencies": {
},
"peerDependencies": {
"@seneca/env": ">=0.2",
"@seneca/provider": ">=1.0.1",
"seneca": ">=3",
"seneca-entity": ">=17",
"seneca-promisify": ">=2"
},
"devDependencies": {
"@seneca/doc": "^4.2.4",
"@seneca/maintain": "0.0.28",
"node-fetch": "^2.6.1",
"@seneca/provider": "^1.0.1",
"@types/jest": "^28.1.3",
"@types/node": "^18.0.0",
"esbuild": "^0.14.47",
"esbuild-jest": "^0.5.0",
"jest": "^28.1.1",
"seneca": "^3.28.2",
"seneca-msg-test": "^3.4.0",
"typescript": "^4.7.4"
}
}