-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpackage.json
45 lines (45 loc) · 1.21 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
{
"name": "discord-faq-bot",
"version": "0.0.1",
"description": "",
"main": "./bin/bot.js",
"scripts": {
"start": "npm run build && node ./bin/bot.js",
"build": "gulp",
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "tslint --project tsconfig.json --config tslint.json --format stylish",
"npm-exact-versions": "npm-exact-versions"
},
"pre-commit": [
"npm-exact-versions"
],
"repository": {
"type": "git",
"url": "git+https://github.com/AndreasGassmann/discord-faq-bot.git"
},
"author": "Andreas Gassmann <[email protected]> (https://github.com/AndreasGassmann)",
"license": "ISC",
"bugs": {
"url": "https://github.com/AndreasGassmann/discord-faq-bot/issues"
},
"homepage": "https://github.com/AndreasGassmann/discord-faq-bot#readme",
"dependencies": {
"@yamdbf/core": "github:yamdbf/core#indev",
"npm-exact-versions": "0.0.3",
"sequelize": "4.37.6",
"sqlite3": "4.0.0"
},
"devDependencies": {
"@types/node": "10.0.3",
"@types/sequelize": "4.27.16",
"del": "3.0.0",
"gulp": "3.9.1",
"gulp-sourcemaps": "2.6.4",
"gulp-tslint": "8.1.3",
"gulp-typescript": "4.0.2",
"pre-commit": "1.2.2",
"tslint": "5.9.1",
"typescript": "2.8.3",
"typestrict": "0.0.8"
}
}