forked from viqueen/notion-renderer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.38 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
{
"name": "notion-renderer",
"version": "1.0.0-m02",
"description": "notion content react renderer",
"main": "dist/index.js",
"scripts": {
"prepare": "husky install",
"format:check": "prettier --check .",
"format": "prettier --check --write .",
"build": "tsc --watch",
"test": "jest --watchAll --collect-coverage",
"test:data": "node notion.content.js",
"test:update": "jest --updateSnapshot",
"ci:build": "tsc",
"ci:test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/viqueen/notion-renderer.git"
},
"keywords": [
"notion",
"content",
"react",
"renderer"
],
"files": [
"dist"
],
"author": "Hasnae R.",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/viqueen/notion-renderer/issues"
},
"homepage": "https://github.com/viqueen/notion-renderer#readme",
"devDependencies": {
"@types/jest": "^26.0.24",
"@types/react": "^17.0.14",
"@types/react-syntax-highlighter": "^13.5.2",
"@types/react-test-renderer": "^17.0.1",
"cross-fetch": "^3.1.4",
"dotenv": "^10.0.0",
"husky": "^7.0.1",
"jest": "^27.0.6",
"prettier": "^2.3.2",
"react-test-renderer": "^17.0.2",
"ts-jest": "^27.0.3",
"typescript": "^4.3.5"
},
"peerDependencies": {
"react": "^17.0.2"
},
"dependencies": {
"react-syntax-highlighter": "^15.4.3"
}
}