-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
38 lines (38 loc) · 990 Bytes
/
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
{
"name": "@tomduffield/confluence-pod",
"version": "1.0.0",
"description": "A Dendron pod to publish notes to your personal Confluence space",
"main": "./lib/index.js",
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tduffield/confluence-pod.git"
},
"scripts": {
"lint": "eslint --ext .ts src/**",
"build": "tsc --build"
},
"files": [
"lib/*.js"
],
"keywords": [],
"author": "Tom Duffield",
"license": "MIT",
"bugs": {
"url": "https://github.com/tduffield/confluence-pod/issues"
},
"homepage": "https://github.com/tduffield/confluence-pod#readme",
"dependencies": {
"@dendronhq/pods-core": "^0.84.0"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.13.0",
"@typescript-eslint/parser": "^5.13.0",
"eslint": "^8.10.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.25.4",
"typescript": "^4.6.2"
}
}