-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.39 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
{
"name": "esoteric-utility",
"version": "1.1.1",
"description": "All the TypeScript utilities used by the Esoteric Foundation.",
"main": "dist/main.js",
"types": "dist/main.d.ts",
"scripts": {
"installDependencies": "npm i",
"compile": "npx tsc",
"build": "npm run installDependencies && npm run tests && npm run compile",
"tests": "npx jest",
"test": "npm run installDependencies && npm run tests"
},
"repository": {
"type": "git",
"url": "git+https://github.com/EsotericFoundation/utility.ts.git"
},
"keywords": [
"utility",
"utilities",
"useful",
"esoteric"
],
"author": {
"name": "Esoteric Foundation",
"url": "https://www.github.com/EsotericFoundation",
"email": "[email protected]"
},
"contributors": [
{
"name": "Esoteric Enderman",
"url": "https://enderman.dev",
"email": "[email protected]"
}
],
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/EsotericFoundation/utility.ts/issues"
},
"homepage": "https://github.com/EsotericFoundation/utility.ts#readme",
"devDependencies": {
"@babel/core": "^7.26.0",
"@babel/preset-env": "^7.26.0",
"@babel/preset-typescript": "^7.26.0",
"@types/jest": "^29.5.14",
"babel-jest": "^29.7.0",
"jest": "^29.7.0",
"typescript": "^5.6.3"
}
}