-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.08 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
{
"name": "@zakyyudha/varcraft",
"version": "1.0.1",
"description": "A versatile variable handling library",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"test": "jest",
"format": "prettier --write 'src/**/*.ts' 'test/**/*.ts'",
"format-check": "prettier --check 'src/**/*.ts' 'test/**/*.ts'"
},
"jest": {
"preset": "ts-jest",
"transform": {
"^.+\\.tsx?$": "ts-jest"
}
},
"repository": {
"type": "git",
"url": "https://github.com/zakyyudha/varcraft.git"
},
"keywords": [
"typescript",
"npm",
"variable",
"handling"
],
"author": "Zaky Yudha",
"license": "MIT",
"bugs": {
"url": "https://github.com/zakyyudha/varcraft/issues"
},
"homepage": "https://github.com/zakyyudha/varcraft#readme",
"devDependencies": {
"@types/jest": "^29.5.11",
"jest": "^29.7.0",
"prettier": "3.1.1",
"ts-jest": "^29.1.1",
"typescript": "^4.9.5"
},
"files": [
"dist"
],
"engines": {
"node": ">=10.0.0"
}
}