-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
62 lines (62 loc) · 1.48 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
60
61
62
{
"name": "@sajenid/aksara.js",
"version": "1.0.0-beta.6",
"description": "Transliterator Latin to Javanese Aksara or Javanese Aksara to Latin",
"type": "module",
"main": "dist/aksara.min.cjs",
"module": "dist/aksara.min.js",
"browser": "dist/aksara.browser.min.js",
"exports": {
".": {
"require": "./dist/aksara.min.cjs",
"import": "./dist/aksara.min.js",
"browser": "./dist/aksara.browser.min.js"
},
"./package.json": "./package.json",
"./": "./"
},
"files": [
"dist"
],
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">=12.18.0"
},
"scripts": {
"test": "npx jest",
"build": "npx rollup -c"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sajenid/aksara.js.git"
},
"keywords": [
"aksara",
"javanese",
"hanacaraka",
"aksara jawa",
"transliterator"
],
"author": "Equan Pr.",
"license": "MIT",
"bugs": {
"url": "https://github.com/sajenid/aksara.js/issues"
},
"homepage": "https://github.com/sajenid/aksara.js#readme",
"devDependencies": {
"@babel/core": "7.12.10",
"@babel/preset-env": "7.12.11",
"@rollup/plugin-babel": "^5.2.2",
"@rollup/plugin-commonjs": "^17.0.0",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^11.0.1",
"babel-core": "7.0.0-bridge.0",
"babel-jest": "26.6.3",
"jest": "^26.6.3",
"rollup": "^2.35.1",
"rollup-plugin-terser": "^7.0.2"
},
"dependencies": {}
}