-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.24 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
{
"name": "vocality",
"version": "1.0.0",
"description": "Plugin Based Discord Bot",
"scripts": {
"postinstall": "npm run bootstrap",
"bootstrap": "lerna bootstrap",
"build": "lerna run compile",
"test": "lerna run test",
"test:commands": "lerna run test:commands",
"test:coverage": "lerna run test:coverage",
"publish": "lerna publish",
"clean": "lerna run clean",
"check": "lerna run check",
"fix": "lerna run fix",
"publish:ci": "lerna publish from-git --yes",
"bump": "lerna version",
"start": "cd base-build; ts-node index.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/vocality-org/vocality.git"
},
"author": "Herzog Matthias, Kaindl Julian",
"license": "MIT",
"bugs": {
"url": "https://github.com/vocality-org/vocality/issues"
},
"homepage": "https://github.com/vocality-org/vocality#readme",
"devDependencies": {
"@commitlint/cli": "^8.3.5",
"@commitlint/config-conventional": "^8.3.4",
"gts": "^1.1.2",
"husky": "^3.1.0",
"lerna": "^3.20.2",
"typescript": "^3.7.5"
},
"engines": {
"node": "=10.x.x",
"npm": "=6.x.x"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
}
}