-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
65 lines (65 loc) · 1.93 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
63
64
65
{
"name": "sunda.js",
"version": "1.0.2",
"description": "Sunda.js is a small library for converting/transliterating Latin into Sundanese script (Aksara Sunda Baku), or vice versa.",
"homepage": "https://github.com/masnormen/sunda.js",
"repository": {
"type": "git",
"url": "https://github.com/masnormen/sunda.js"
},
"author": "Nourman Hajar (nourman.id)",
"license": "MIT",
"private": false,
"keywords": [
"aksara",
"aksara sunda",
"aksara sunda baku",
"sunda",
"sundanese",
"transliterate"
],
"source": "src/index.ts",
"main": "dist/umd/index.js",
"module": "dist/esm/index.js",
"files": [
"dist"
],
"exports": {
"import": "./dist/esm/index.js",
"require": "./dist/umd/index.js"
},
"types": "dist/types/index.d.ts",
"scripts": {
"build": "yarn typegen && rollup -c",
"lint": "eslint --ext .ts --ignore-path .gitignore .",
"test": "jest --verbose",
"typegen": "tsc --declaration --emitDeclarationOnly --declarationMap --noEmit false",
"watch": "rollup -cw"
},
"dependencies": {
"string-match-all": "^1.1.1"
},
"devDependencies": {
"@babel/plugin-proposal-class-properties": "^7.16.0",
"@babel/plugin-proposal-private-methods": "^7.16.0",
"@babel/plugin-transform-async-to-generator": "^7.16.0",
"@babel/plugin-transform-regenerator": "^7.16.0",
"@babel/plugin-transform-runtime": "^7.16.0",
"@babel/preset-env": "^7.16.0",
"@babel/preset-typescript": "^7.16.0",
"@rollup/plugin-babel": "^5.3.0",
"@rollup/plugin-commonjs": "^21.0.1",
"@rollup/plugin-node-resolve": "^13.0.6",
"@types/jest": "^27.0.2",
"@typescript-eslint/eslint-plugin": "^5.3.0",
"@typescript-eslint/parser": "^5.3.0",
"eslint": "^8.2.0",
"jest": "^27.3.1",
"prettier": "^2.4.1",
"rollup": "^2.59.0",
"rollup-plugin-prettier": "^2.2.0",
"ts-jest": "^27.0.7",
"ts-node": "^10.4.0",
"typescript": "^4.4.4"
}
}