-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 2.21 KB
/
package.json
File metadata and controls
84 lines (84 loc) · 2.21 KB
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
{
"name": "github-projects-md-sync",
"version": "0.1.11",
"description": "A tool to sync GitHub Project V2 items with local markdown files",
"main": "dist/index.js",
"author": "Louis Lu, NZLouis <nzlouis.com@gmail.com> (https://blog.nzlouis.com)",
"homepage": "https://nzlouis.com",
"repository": {
"type": "git",
"url": "git+https://github.com/nzlouislu/github-projects-md-sync.git"
},
"bugs": {
"url": "https://github.com/nzlouislu/github-projects-md-sync/issues"
},
"types": "dist/index.d.ts",
"exports": {
".": {
"default": "./dist/index.js",
"import": "./dist/index.js",
"require": "./dist/index.js",
"types": "./dist/index.d.ts"
},
"./index": {
"default": "./dist/index.js",
"import": "./dist/index.js",
"require": "./dist/index.js",
"types": "./dist/index.d.ts"
},
"./package.json": "./package.json"
},
"typesVersions": {
"*": {
"index": ["dist/index.d.ts"],
"*": ["dist/index.d.ts"]
}
},
"files": [
"dist",
"src",
"README.md",
"LICENSE"
],
"scripts": {
"build": "rimraf dist && tsc",
"test": "mocha -r ts-node/register tests/**/*.test.ts",
"coverage": "nyc mocha -r ts-node/register tests/**/*.test.ts",
"lint": "prettier --check .",
"clean": "rimraf dist",
"example": "ts-node examples/examples-integration.ts",
"example:sync:test": "mocha -r ts-node/register examples/tests/md-to-project.test.ts",
"example:project:test": "mocha -r ts-node/register examples/tests/project-to-md.test.ts"
},
"keywords": [
"github",
"project",
"markdown",
"sync"
],
"license": "MIT",
"dependencies": {
"@octokit/graphql": "^7.0.1",
"dotenv": "^16.3.1",
"remark-gfm": "^4.0.1",
"remark-parse": "^11.0.0",
"remark-stringify": "^11.0.0",
"strip-indent": "^4.1.0",
"unified": "^11.0.5",
"unist-util-select": "^5.1.0"
},
"devDependencies": {
"@types/debug": "^4.1.12",
"@types/mocha": "^10.0.1",
"@types/node": "^20.4.5",
"mocha": "^10.2.0",
"nyc": "^17.1.0",
"prettier": "^3.0.0",
"rimraf": "^5.0.1",
"ts-node": "^10.9.1",
"typescript": "^5.1.6"
},
"engines": {
"node": ">=18.0.0"
}
}