-
-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
103 lines (103 loc) · 2.58 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
{
"name": "notion-jam",
"nameFull": "NotionJAM",
"version": "0.0.3",
"description": "A notion-jam cli / action",
"license": "UNLICENSED",
"engines": {
"node": ">=6"
},
"repository": {
"type": "git",
"url": "git+https://github.com/victornpb/notion-jam.git"
},
"bugs": {
"url": "https://github.com/victornpb/notion-jam/issues"
},
"homepage": "https://github.com/victornpb/notion-jam",
"author": "victornpb",
"action": "dist/action.mjs",
"main": "dist/bin.mjs",
"bin": "dist/bin.mjs",
"scripts": {
"start": "node dist/bin.mjs",
"build": "rollup -c",
"watch": "rollup -c -w",
"prebuild": "rimraf dist",
"test": "npm run lint && npm run build",
"lint": "eslint src",
"lint:fix": "eslint src --fix",
"version": "npm run build",
"release": "np --any-branch"
},
"files": [
"dist",
"action.yml",
".env.example"
],
"keywords": [
"notion",
"jam",
"export",
"markdown",
"static",
"website",
"gh-pages"
],
"sideEffects": false,
"type": "module",
"dependencies": {
"@actions/core": "^1.6.0",
"@actions/github": "^5.0.0",
"@notionhq/client": "^0.4.9",
"default-args": "^1.0.1",
"dotenv": "^10.0.0",
"js-yaml": "^4.1.0",
"notion-to-md": "^2.3.3",
"remark-frontmatter": "^4.0.1",
"remark-gfm": "^3.0.1",
"remark-parse": "^10.0.1",
"remark-parse-yaml": "^0.0.3",
"remark-stringify": "^10.0.2",
"remark-toc": "^8.0.1",
"remark-twemoji": "^0.1.1",
"unified": "^10.1.2"
},
"devDependencies": {
"@babel/core": "^7.17.9",
"@babel/plugin-proposal-class-properties": "^7.16.7",
"@babel/plugin-proposal-private-methods": "^7.16.11",
"@babel/plugin-syntax-optional-chaining": "^7.8.3",
"@babel/plugin-transform-object-assign": "^7.16.7",
"@babel/plugin-transform-runtime": "^7.17.0",
"@babel/polyfill": "^7.12.1",
"@babel/preset-env": "^7.16.11",
"@rollup/plugin-json": "^4.1.0",
"asciitable.js": "^1.0.3",
"eslint": "^8.13.0",
"husky": "^8.0.1",
"lint-staged": "^12.4.0",
"np": "^7.6.1",
"postcss": "^8.4.12",
"rimraf": "^3.0.2",
"rollup": "^2.70.2",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-banner2": "^1.2.2",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-postcss": "^4.0.2",
"rollup-plugin-terser": "^7.0.2",
"tiny-dedent": "^1.0.2"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"src/**/*.js": [
"npm run lint:fix",
"git add"
]
}
}