forked from dragonman225/notionapi-agent
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.87 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
{
"name": "notionapi-agent",
"version": "1.1.2",
"description": "Unofficial Notion.so API client.",
"author": "dragonman225",
"license": "MIT",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "npm run build:module && npm run build:doc",
"build:module": "rm -rf dist && rollup -c && tsc --emitDeclarationOnly && cp -R src/interfaces dist/interfaces",
"build:doc": "npm run build:typedoc && npm run build:dependency-graph",
"build:typedoc": "typedoc --out typedoc --mode file --includeDeclarations --excludeExternals src/",
"build:dependency-graph": "npx depcruise --exclude '^(node_modules|src/interfaces)' --output-type dot --prefix 'https://github.com/dragonman225/notionapi-agent/tree/master/' src/index.ts | dot -T svg > documentation/dependency-graph.svg",
"test": "ts-node test/index.spec.ts",
"release": "npm run build && npm publish",
"upgrade": "node tools/upgrade-deps.js"
},
"dependencies": {
"@dnpr/logger": "^0.2.0",
"@dnpr/make-request": "^0.1.1"
},
"devDependencies": {
"@rollup/plugin-typescript": "^2.0.1",
"@types/node": "^13.1.1",
"@typescript-eslint/eslint-plugin": "^2.13.0",
"@typescript-eslint/parser": "^2.13.0",
"dependency-cruiser": "^6.1.0",
"eslint": "^6.8.0",
"rollup": "^1.27.14",
"ts-node": "^8.5.4",
"typescript": "^3.7.4"
},
"files": [
"documentation/examples/get-one-block.js",
"dist/"
],
"keywords": [
"nodejs",
"notion",
"api",
"api-wrapper",
"api-client"
],
"homepage": "https://github.com/dragonman225/notionapi-agent",
"repository": {
"type": "git",
"url": "https://github.com/dragonman225/notionapi-agent.git"
},
"bugs": {
"url": "https://github.com/dragonman225/notionapi-agent/issues"
},
"typeScriptVersion": "3.7",
"runkitExampleFilename": "documentation/examples/get-one-block.js"
}