-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
91 lines (91 loc) · 2.48 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"name": "discordeco",
"version": "0.0.1-SNAPSHOT",
"description": "A simple package for Discord bot economy system",
"main": "dist/index.js",
"scripts": {
"tsc": "tsc",
"gulp:lint": "gulp tslint",
"lint": "npm run gulp:lint -s",
"tslint": "tslint --config ./tslint.json ./src/**/*.ts",
"webpack": "webpack",
"webpack:production": "webpack --config config/node.js --mode production",
"docs": "jsdoc2md --files ./src/**/*.ts --configure ./docs.json > ./docs/README.md",
"build": "npm run tslint && npm run webpack:production",
"mocha": "mocha",
"test": "npm run tslint --project && npm run mocha",
"prepublishOnly": "npm run build -s && npm run docs && npm run mocha",
"finalize": "npm run prepublishOnly -s"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jDevxyz/discordeco.git"
},
"keywords": [
"discord",
"bot",
"discordbot",
"economysystem",
"economy",
"system",
"discordeco",
"discordeco.js",
"eco",
"typescript",
"botdiscord",
"discordboteco",
"botdiscordeco",
"nodejs"
],
"author": "J-Dev Team",
"maintainers": [
{
"name": "HZMI",
"url": "https://hzmi.xyz",
"discordTag": "Hazmi35#1855"
},
{
"name": "Riichi",
"url": "https://riichi.world",
"discordTag": "Riichi_Rusdiana#6815"
}
],
"license": "AGPL-3.0",
"bugs": {
"url": "https://github.com/jDevxyz/discordeco/issues"
},
"homepage": "https://github.com/jDevxyz/discordeco#readme",
"devDependencies": {
"@babel/cli": "^7.4.4",
"@babel/core": "^7.4.4",
"@babel/plugin-proposal-class-properties": "^7.4.4",
"@babel/plugin-proposal-object-rest-spread": "^7.4.4",
"@babel/preset-env": "^7.4.4",
"@babel/preset-typescript": "^7.3.3",
"@types/better-sqlite3": "3.1.3",
"@types/lodash": "^4.14.144",
"@types/node": "^12.7.9",
"chalk": "^2.4.2",
"gulp": "^4.0.1",
"gulp-tslint": "^8.1.4",
"gulp-typescript": "^5.0.1",
"jsdoc-babel": "^0.5.0",
"jsdoc-to-markdown": "^4.0.1",
"json-filter-loader": "^1.0.0",
"mocha": "^6.1.4",
"ora": "^3.4.0",
"rimraf": "^2.6.3",
"ts-loader": "^5.4.5",
"tslint": "^5.20.0",
"tslint-eslint-rules": "^5.4.0",
"typescript": "^3.6.3",
"webpack": "^4.30.0",
"webpack-cli": "^3.3.2",
"webpack-merge": "^4.2.1",
"webpack-node-externals": "^1.7.2"
},
"dependencies": {
"better-sqlite3": "^5.4.3",
"lodash": "^4.17.15"
}
}