forked from discordjs/collection
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.47 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
{
"name": "@discordjs/collection",
"version": "0.1.4",
"description": "Utility data structure used in Discord.js",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"lint": "eslint src --ext .ts",
"prebuild": "npm run lint",
"build": "rimraf dist/ && tsc",
"pretest": "npm run build",
"test": "node test/index.js",
"docs": "docgen --jsdoc jsdoc.json --source src/*.ts src/**/*.ts --custom docs/index.yml --output docs/docs.json",
"docs:test": "docgen --jsdoc jsdoc.json --source src/*.ts src/**/*.ts --custom docs/index.yml"
},
"repository": {
"type": "git",
"url": "git+https://github.com/discordjs/collection.git"
},
"keywords": [
"map",
"collection",
"utility"
],
"author": "Amish Shah <[email protected]>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/discordjs/collection/issues"
},
"homepage": "https://github.com/discordjs/collection#readme",
"devDependencies": {
"@babel/cli": "^7.5.5",
"@babel/core": "^7.5.5",
"@babel/preset-env": "^7.5.5",
"@babel/preset-typescript": "^7.3.3",
"@types/node": "^10.14.17",
"@typescript-eslint/eslint-plugin": "^2.1.0",
"@typescript-eslint/parser": "^2.1.0",
"discord.js-docgen": "discordjs/docgen#ts-patch",
"eslint": "^6.3.0",
"eslint-config-marine": "^4.2.1",
"jsdoc-babel": "^0.5.0",
"rimraf": "^3.0.0",
"typescript": "^3.6.2"
},
"eslintConfig": {
"extends": "marine/node"
}
}