-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
36 lines (36 loc) · 912 Bytes
/
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
{
"name": "@koalati/tool-template",
"version": "1.0.0",
"description": "A template for creating custom Koalati tools.",
"main": "tool.js",
"scripts": {
"test": "mocha --config=test/mocharc.json",
"debug": "npx @koalati/dev-tool-tester --url=\"https://koalati.com/\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/koalatiapp/tool-template.git"
},
"keywords": [
"koalati",
"koalati-tool"
],
"author": {
"name": "Koalati",
"email": "[email protected]",
"url": "https://koalati.com"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/koalatiapp/tool-template/issues"
},
"homepage": "https://github.com/koalatiapp/tool-template#readme",
"devDependencies": {
"@koalati/dev-tool-tester": "^2.0.3",
"eslint": "^7.18.0",
"mocha": "^8.2.1"
},
"dependencies": {
"@koalati/result-builder": "^1.4.0"
}
}