-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
59 lines (59 loc) · 1.42 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
55
56
57
58
59
{
"name": "@kalenderjawa/weton",
"version": "1.0.0-alpha",
"description": "Weton adalah sistem hari kelahiran yang dipakai di budaya & penanggalan (kalender) Jawa.",
"type": "module",
"main": "lib/weton.min.cjs",
"module": "lib/weton.min.js",
"browser": "lib/weton.browser.min.js",
"exports": {
".": {
"require": "./lib/weton.min.cjs",
"import": "./lib/weton.min.js",
"browser": "./lib/weton.browser.min.js"
},
"./package.json": "./package.json",
"./": "./"
},
"files": [
"lib"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "npx rollup --config",
"test": "npx jest --no-cache"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kalenderjawa/weton.git"
},
"keywords": [
"weton"
],
"author": "Equan Pr. <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/kalenderjawa/weton/issues"
},
"homepage": "https://github.com/kalenderjawa/weton#readme",
"devDependencies": {
"@babel/core": "^7.15.5",
"@babel/preset-env": "^7.15.6",
"babel-jest": "^27.2.0",
"jest": "^27.2.0",
"rollup": "^2.56.3",
"rollup-plugin-external-globals": "^0.6.1",
"rollup-plugin-terser": "^7.0.2"
},
"dependencies": {
"@kalenderjawa/pancawara": "^1.0.0",
"@kalenderjawa/saptawara": "^1.3.0"
},
"jest": {
"transform": {
"^.+\\.js$": "babel-jest"
}
}
}