-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.26 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
{
"name": "@porkyproductions/hat",
"version": "1.4.1",
"description": "A balzingly fast JavaScript library with a bunch of helper functions pretaining to hedgehogs and such ",
"type": "module",
"private": false,
"scripts": {
"test": "node out/index.js",
"build": "tsc -p tsconfig.json",
"lint": "eslint ./src/* --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/PorkyProductions/hat.git"
},
"keywords": [
"hedgehogs",
"array",
"tools",
"random",
"random in array",
"random in range",
"print"
],
"author": "PorkyProductions",
"license": "MIT",
"bugs": {
"url": "https://github.com/PorkyProductions/hat/issues"
},
"homepage": "https://github.com/PorkyProductions/hat#readme",
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"eslint": "^8.51.0",
"typescript": "^5.2.2"
},
"files": [
"./dist/**/*.js",
"./dist/**/*.js.map",
"./dist/**/*.d.ts",
"./dist/**/*.d.ts.map"
],
"main": "./dist/index.js",
"displayName": "HAT",
"contributors": [
"Tristan Winata",
"Ryan Mullin"
],
"maintainers": [
"Ryan Mullin",
"Tristan Winata"
],
"types": "./dist/index.d.ts"
}