-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.36 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.36 KB
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
{
"name": "@discordoo/collection",
"version": "1.1.3",
"description": "An utility data structure used within the Discordoo.",
"main": "dist/index.js",
"types": "types/index.d.ts",
"type": "commonjs",
"scripts": {
"build": "ttsc -p tsconfig.json",
"docs": "npx tapok ./docs/docs.json -c typedoc.js -e ./src/index.ts",
"lint": "eslint tests src",
"lint:fix": "eslint tests src --fix",
"test": "jest",
"prepublishOnly": "npm run build",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ddoodev/collection.git"
},
"author": "Mirdukkk",
"license": "MIT",
"bugs": {
"url": "https://github.com/ddoodev/collection/issues"
},
"homepage": "https://ddoo.dev/coll",
"devDependencies": {
"@commitlint/cli": "12.1.4",
"@commitlint/config-conventional": "12.1.4",
"@discordoo/tapok": "2.0.24",
"@types/jest": "26.0.24",
"@typescript-eslint/eslint-plugin": "4.28.3",
"@typescript-eslint/parser": "4.28.3",
"@zerollup/ts-transform-paths": "1.7.18",
"eslint": "7.30.0",
"husky": "6.0.0",
"jest": "27.0.6",
"lodash": "4.17.21",
"ts-jest": "27.0.3",
"ts-node": "10.1.0",
"ttypescript": "1.5.13",
"typescript": "4.4.4"
},
"engines": {
"node": ">=12.0.0"
},
"dependencies": {
"@types/node": "12.0.0",
"tslib": "2.3.1"
}
}