forked from discordjs/builders
-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
82 lines (82 loc) · 2.2 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
{
"name": "fosscord.js-builders",
"version": "0.3.0",
"description": "A set of builders that you can use when creating your bot.",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"exports": {
"require": "./dist/index.js",
"import": "./dist/index.mjs"
},
"scripts": {
"prebuild": "npm run clean",
"build": "tsc && gen-esm-wrapper ./dist/index.js ./dist/index.mjs",
"clean": "rimraf dist",
"lint": "eslint --ext mjs,ts src/**/*.ts",
"lint:fix": "eslint --fix --ext mjs,ts src/**/*.ts",
"prepare": "is-ci || husky install",
"prepublishOnly": "npm run lint && npm run test",
"pretest": "npm run build",
"test": "jest",
"test:ci": "jest --verbose --no-stack-trace",
"release": "standard-version --preset angular"
},
"repository": {
"type": "git",
"url": "https://github.com/discordjs/builders.git"
},
"keywords": [
"discord",
"api",
"bot",
"client",
"node",
"discordapp",
"discordjs"
],
"author": "Flam3rboy & Vlad Frangu <[email protected]>",
"license": "Apache-2.0",
"files": [
"dist"
],
"bugs": {
"url": "https://github.com/discordjs/builders/issues"
},
"homepage": "https://github.com/discordjs/builders#readme",
"dependencies": {
"@sindresorhus/is": "^4.0.1",
"discord-api-types": "^0.22.0",
"ow": "^0.26.0",
"ts-mixer": "^5.4.1",
"tslib": "^2.3.0"
},
"devDependencies": {
"@babel/core": "^7.14.6",
"@babel/plugin-proposal-decorators": "^7.14.5",
"@babel/preset-env": "^7.14.7",
"@babel/preset-typescript": "^7.14.5",
"@commitlint/cli": "^12.1.4",
"@commitlint/config-angular": "^12.1.4",
"@types/jest": "^26.0.24",
"@types/node": "^16.0.1",
"@typescript-eslint/eslint-plugin": "^4.28.2",
"@typescript-eslint/parser": "^4.28.2",
"babel-jest": "^27.0.6",
"babel-plugin-transform-typescript-metadata": "^0.3.2",
"eslint": "^7.30.0",
"eslint-config-marine": "^9.0.6",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^3.4.0",
"gen-esm-wrapper": "^1.1.2",
"husky": "^7.0.1",
"is-ci": "^3.0.0",
"jest": "^27.0.6",
"lint-staged": "^11.0.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.3.2",
"rimraf": "^3.0.2",
"standard-version": "^9.3.0",
"typescript": "^4.3.5"
}
}