forked from asnunes/notion-page-to-html
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.44 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
{
"name": "notion-page-to-html",
"version": "1.1.3",
"description": "It converts public notion pages to html from url",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "rm -rf ./dist && tsc",
"lint": "eslint '*/**/*.{js,ts,tsx}' --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"
},
"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",
"@typescript-eslint/eslint-plugin": "^4.31.2",
"@typescript-eslint/parser": "^4.31.2",
"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",
"typescript": "^4.4.3"
}
}