-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.18 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
{
"name": "ctwg-toolkit-mrgt",
"version": "0.0.1",
"description": "Machine Readable Glossary Tool (MRGT)",
"main": "lib/Run.js",
"types": "lib/Run.d.ts",
"bin": {
"mrgt": "./lib/Run.js"
},
"type": "module",
"scripts": {
"build": "rm -rf lib && tsc -p .",
"rebuild": "npm uninstall @aviarytech/mrgt -g && rm lib -rf && npm run build && npm i -g",
"test": "npm run build && mocha __tests__/**/*.test.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/aviarytech/mrgt"
},
"keywords": [],
"author": "Aviary Tech",
"license": "ISC",
"bugs": {
"url": "https://github.com/aviarytech/mrgt/issues"
},
"homepage": "https://github.com/aviarytech/mrgt#readme",
"dependencies": {
"chalk": "^4.1.2",
"commander": "10.0.0",
"figlet": "^1.6.0",
"glob": "^10.2.6",
"gray-matter": "^4.0.3",
"handlebars": "^4.7.7",
"js-yaml": "^4.1.0",
"mustache": "^4.2.0",
"tslog": "^4.4.4"
},
"devDependencies": {
"@types/figlet": "^1.5.5",
"@types/js-yaml": "^4.0.5",
"@types/node": "^18.11.18",
"chai": "^4.3.7",
"mocha": "^10.2.0",
"typescript": "^4.9.5"
},
"files": [
"lib/**/*"
]
}