-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
52 lines (52 loc) · 1.36 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
{
"name": "@kalenderjawa/petungan",
"version": "1.0.0-alpha",
"description": "Utilitas untuk pengkonversian sistem Kalender Jawa.",
"main": "lib/petungan.min.cjs",
"module": "lib/petungan.min.js",
"browser": "lib/petungan.browser.min.js",
"exports": {
".": {
"require": "./lib/petungan.min.cjs",
"import": "./lib/petungan.min.js",
"browser": "./lib/petungan.browser.min.js"
},
"./package.json": "./package.json",
"./": "./"
},
"files": [
"lib"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "npx rollup --config",
"test": "npx jest --no-cache"
},
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/kalenderjawa/petungan.git"
},
"keywords": ["jawa ke masehi", "masehi ke hijriyah", "hijriyah ke masehi", "jawa ke hijriyah", "konversi tahun", "kalender jawa"],
"author": "Equan Pr. <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/kalenderjawa/petungan/issues"
},
"homepage": "https://github.com/kalenderjawa/petungan#readme",
"devDependencies": {
"@babel/core": "^7.19.x",
"@babel/preset-env": "^7.19.x",
"babel-jest": "^29.1.x",
"rollup": "^2.79.x ",
"rollup-plugin-terser": "^7.0.2",
"jest": "29.1.x"
},
"jest": {
"transform": {
"^.+\\.js$": "babel-jest"
}
}
}