-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
53 lines (53 loc) · 1.17 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
{
"name": "beepbot-common",
"version": "2.2.4",
"description": "Common libs for the BeepBot project.",
"main": "js/src/index.js",
"typings": "js/src/index.d.ts",
"author": "Kieron Richardson <artdude543@hotmail.co.uk>",
"contributors": [
{
"name": "Synerate",
"url": "https://synerate.com/"
}
],
"license": "MIT",
"dependencies": {
"lodash": "^4.17.21"
},
"devDependencies": {
"@types/lodash": "^4.14.194",
"@types/node": "^18.15.12",
"ava": "^5.2.0",
"coveralls-next": "^4.2.0",
"nyc": "^15.1.0",
"typescript": "^5.0.4"
},
"scripts": {
"test": "tsc && nyc ava --verbose",
"report": "nyc report --reporter=html",
"build": "tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Synerate/Beepbot-Common.git"
},
"keywords": [
"beepbot",
"common",
"utils"
],
"bugs": {
"url": "https://github.com/Synerate/Beepbot-Common/issues"
},
"homepage": "https://github.com/Synerate/Beepbot-Common#readme",
"ava": {
"files": [
"./js/tests/*.js"
]
},
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"packageManager": "yarn@3.2.0"
}