-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 979 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 979 Bytes
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
{
"name": "notion-types",
"version": "0.0.0",
"description": "Types and typing utilities for creating your Typescript Notion integrations.",
"main": "dist/main.js",
"author": "Tim Kinnane <tim@nestedcode.com>",
"license": "MIT",
"private": false,
"scripts": {
"lint": "eslint",
"test": "jest",
"bundle": "rollup --config rollup.config.ts --configPlugin typescript"
},
"dependencies": {},
"devDependencies": {
"@jest/types": "^27.0.6",
"@rollup/plugin-typescript": "^8.2.5",
"@types/node": "^14.17.5",
"@typescript-eslint/eslint-plugin": "^4.29.2",
"@typescript-eslint/parser": "^4.29.2",
"eslint": "^7.32.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.24.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.1.0",
"jest": "^27.0.6",
"rollup": "^2.56.2",
"ts-jest": "^27.0.5",
"ts-node": "^10.2.1",
"tslib": "^2.3.1",
"typescript": "^4.3.5"
}
}