-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
77 lines (77 loc) · 1.84 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
{
"name": "semtree",
"version": "0.0.13",
"description": "Utilities to build a semantic tree (in markdown).",
"license": "GPL-3.0",
"author": {
"name": "manunamz",
"email": "manuanmz@pm.me"
},
"repository": {
"type": "git",
"url": "https://github.com/wikibonsai/semtree.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": {
"caml-mkdn": "^0.0.2",
"gray-matter": "^4.0.3",
"wikirefs": "^0.0.5"
},
"devDependencies": {
"@babel/core": "^7.20.2",
"@babel/plugin-transform-runtime": "^7.19.6",
"@babel/preset-env": "^7.20.2",
"@babel/preset-typescript": "^7.18.6",
"@babel/runtime": "^7.20.1",
"@rollup/plugin-babel": "^6.0.2",
"@rollup/plugin-commonjs": "^23.0.2",
"@types/mocha": "^9.1.1",
"@types/node": "^18.0.0",
"@types/sinon": "^10.0.11",
"@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",
"prettier": "^2.5.1",
"rollup": "2.70.1",
"rollup-plugin-ts": "^3.0.2",
"sinon": "^14.0.0",
"ts-node": "^10.8.0",
"typescript": "^4.5.5"
},
"keywords": [
"bonsai",
"categories",
"categorical hierarchy",
"category",
"concept hierarchy",
"hierarchy",
"knowledge bonsai",
"knowledge tree",
"markdown",
"semtree",
"semantic tree",
"semantic-tree",
"tag",
"tag hierarchy",
"tags",
"taxonomy",
"wikibonsai"
]
}