-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.03 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
{
"name": "@tryfabric/notion-utils",
"version": "1.0.0",
"description": "A set of utilities for working with the Notion API",
"main": "build/src/index.js",
"typings": "build/src/index.d.ts",
"scripts": {
"build": "tsc",
"clean": "gts clean",
"fix": "gts fix",
"lint": "gts lint",
"prepare": "npm run build",
"test": "jest",
"test:all": "npm run build && npm run test && npm run lint"
},
"dependencies": {
"notion-api-types": "^1.0.0"
},
"devDependencies": {
"@types/jest": "^27.5.0",
"@types/node": "^17.0.31",
"gts": "^3.1.0",
"jest": "^28.0.3",
"linguist-languages": "^7.15.0",
"release-it": "^15.0.0",
"ts-jest": "^28.0.1",
"ts-node": "^10.7.0",
"typescript": "4.4.x"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tryfabric/notion-utils.git"
},
"author": "Fabric",
"license": "MIT",
"bugs": {
"url": "https://github.com/tryfabric/notion-utils/issues"
},
"homepage": "https://github.com/tryfabric/notion-utils#readme"
}