-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
78 lines (78 loc) · 1.78 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
{
"name": "wikirefs",
"version": "0.0.5",
"description": "wikiref utilities (including [[wikilinks]]).",
"license": "GPL-3.0",
"author": {
"name": "manunamz",
"email": "manuanmz@pm.me"
},
"repository": {
"type": "git",
"url": "https://github.com/wikibonsai/wikirefs.git"
},
"files": [
"dist/**/*"
],
"source": "./src/index.ts",
"main": "./dist/index.cjs.js",
"module": "./dist/index.esm.js",
"browser": "./dist/index.umd.js",
"scripts": {
"build": "rollup -c",
"clean": "npx del dist",
"rebuild": "yarn clean && yarn build",
"lint": "eslint ./src ./test --ext .ts",
"pretest": "yarn rebuild",
"test": "nyc mocha"
},
"dependencies": {
"escape-mkdn": "^0.0.3"
},
"devDependencies": {
"@babel/plugin-transform-runtime": "^7.19.6",
"@babel/preset-env": "^7.20.2",
"@babel/preset-typescript": "^7.18.6",
"@rollup/plugin-babel": "^6.0.2",
"@rollup/plugin-commonjs": "^23.0.2",
"@types/mocha": "^9.1.1",
"@types/node": "^18.0.0",
"@types/sinon": "^17.0.3",
"@typescript-eslint/eslint-plugin": "^5.42.1",
"@typescript-eslint/parser": "^5.42.1",
"del-cli": "^5.0.0",
"eslint": "^8.27.0",
"mocha": "^10.0.0",
"nyc": "^15.1.0",
"rollup": "2.70.1",
"rollup-plugin-ts": "^3.0.2",
"sinon": "^18.0.0",
"ts-node": "^10.7.0",
"typescript": "^4.5.5"
},
"keywords": [
"bidirectional link",
"bidirectional links",
"internal link",
"internal links",
"ref",
"refs",
"reference",
"references",
"regex",
"personal wiki",
"wiki",
"wiki-link",
"wiki-links",
"wikiattr",
"wikiattrs",
"wikibonsai",
"wikiembed",
"wikiembeds",
"wikilink",
"wikilinks",
"wikiref",
"wikirefs",
"zettelkasten"
]
}