-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
60 lines (60 loc) · 2.12 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
{
"name": "@guildedjs/main",
"version": "0.0.0",
"description": "Main overarching package utilizing lerna to manage all the @guildedjs packages",
"private": true,
"author": "Zaid \"Nico\"",
"license": "MIT",
"scripts": {
"build": "npx lerna run build",
"bootstrap": "npx lerna bootstrap",
"lint": "npx eslint packages/ scripts/ --ext .ts,.js",
"lint:fix": "npm run lint -- --fix",
"docs": "npx rimraf docs && npx typedoc --options typedoc.config.js packages && node scripts/post-docs.js",
"test": "npx jest",
"test:build": "npm run build && npx jest",
"prepublishOnly": "npm run lint && npx lerna run prepublishOnly",
"prepare": "husky install",
"changelog": "npx conventional-changelog -p angular -i CHANGELOG.md -s",
"reset": "cd scripts && node refresh.js"
},
"devDependencies": {
"@babel/core": "^7.12.17",
"@babel/generator": "^7.13.0",
"@babel/preset-env": "^7.12.17",
"@babel/preset-typescript": "^7.12.17",
"@commitlint/cli": "^11.0.0",
"@commitlint/config-angular": "^11.0.0",
"@strictsoftware/typedoc-plugin-monorepo": "^0.3.1",
"@types/jest": "^26.0.24",
"@typescript-eslint/eslint-plugin": "^3.9.0",
"@typescript-eslint/parser": "^3.9.0",
"babel-jest": "^26.6.3",
"babel-plugin-const-enum": "^1.0.1",
"babel-plugin-replace-ts-export-assignment": "^0.0.2",
"conventional-changelog-cli": "^2.1.1",
"dotenv": "^8.2.0",
"eslint": "^7.6.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-simple-import-sort": "^5.0.3",
"eslint-plugin-sort-keys-fix": "^1.1.1",
"husky": "^6.0.0",
"jest": "^27.0.6",
"lerna": "^3.22.1",
"lint-staged": "^10.4.2",
"prettier": "^2.0.5",
"rimraf": "^3.0.2",
"typedoc": "^0.19.2",
"typedoc-plugin-remove-references": "0.0.5",
"typescript": "^4.0.5"
},
"repository": {
"type": "git",
"url": "git+https://github.com/zaida04/guilded.js-selfbot.git"
},
"bugs": {
"url": "https://github.com/zaida04/guilded.js-selfbot/issues"
},
"homepage": "https://github.com/zaida04/guilded.js-selfbot#readme"
}