-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.25 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
{
"name": "@botsocket/moonstone",
"version": "1.0.0",
"description": "A simple yet powerful Discord framework for building scalable bot applications",
"main": "src/index.js",
"types": "src/index.d.ts",
"files": [
"src"
],
"repository": {
"type": "git",
"url": "git+https://github.com/botsocket/moonstone.git"
},
"author": "BotSocket",
"license": "MIT",
"bugs": {
"url": "https://github.com/botsocket/moonstone/issues"
},
"homepage": "https://github.com/botsocket/moonstone#readme",
"scripts": {
"test": "jest --coverage && echo \"All tests passed\" && tsc && echo \"All type tests passed\" && eslint . --report-unused-disable-directives && echo \"No linting errors\""
},
"devDependencies": {
"@hapi/eslint-plugin-hapi": "^4.3.5",
"eslint": "^6.8.0",
"jest": "^25.1.0",
"typescript": "^3.8.3"
},
"dependencies": {
"@botsocket/bone": "^1.0.0",
"@botsocket/bornite": "^1.1.0",
"@botsocket/copal": "^1.0.1",
"@botsocket/jade": "^1.0.0",
"@botsocket/quartz": "^1.0.1",
"@botsocket/ruby": "^1.0.1",
"@botsocket/topaz": "^1.0.1"
},
"engines": {
"node": ">=12.0.0"
}
}