forked from asnunes/notion-page-to-html
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 1.76 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
{
"name": "@routex-hq/notion-page-to-html",
"version": "1.2.0-build.0",
"description": "It converts public notion pages to html from url",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"require": "./dist/index.js",
"import": "./dist/index.mjs",
"default": "./dist/index.js"
}
},
"scripts": {
"build": "tsup",
"lint": "eslint '*/**/*.{js,ts}' --quiet --fix",
"lint:staged": "lint-staged",
"test": "jest --passWithNoTests --silent --noStackTrace --runInBand",
"test:watch": "npm test -- --watch",
"test:verbose": "jest --passWithNoTests --runInBand",
"test:staged": "npm test -- --findRelatedTests",
"test:ci": "npm test -- --coverage"
},
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "git+https://github.com/asnunes/notion-page-to-html.git"
},
"keywords": [
"notion",
"page",
"html"
],
"author": "Alexandre Nunes",
"license": "MIT",
"bugs": {
"url": "https://github.com/asnunes/notion-page-to-html/issues"
},
"homepage": "https://github.com/asnunes/notion-page-to-html#readme",
"devDependencies": {
"@types/jest": "^27.0.2",
"@types/nock": "^11.1.0",
"@types/node": "^18.7.23",
"@typescript-eslint/eslint-plugin": "^4.31.2",
"@typescript-eslint/parser": "^4.31.2",
"esbuild-plugin-alias": "^0.2.1",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"git-commit-msg-linter": "^3.2.8",
"husky": "^7.0.2",
"jest": "^27.2.2",
"lint-staged": "^11.1.2",
"nock": "^13.1.3",
"prettier": "^2.4.1",
"ts-jest": "^27.0.5",
"tsup": "^6.2.3",
"typescript": "^4.4.3"
}
}