-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
43 lines (37 loc) · 1.21 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
{
"name": "pig-latinizer",
"version": "1.0.6",
"description": "Translates English text to Pig Latin, with proper handling of capitalization, punctuation, and hyphenated phrases",
"keywords": ["pig", "latin", "piglatin", "pig-latin", "translate", "translator", "igpay", "atinlay", "bacon", "aconbay"],
"homepage": "https://github.com/jakshin/pig-latinizer",
"bugs": "https://github.com/jakshin/pig-latinizer/issues",
"repository": {
"type": "git",
"url": "https://github.com/jakshin/pig-latinizer.git"
},
"license": "MIT",
"author": "Jason Jackson",
"main": "lib/pigLatin.js",
"typings": "types/pigLatin.d.ts",
"files": [
"lib/",
"types/"
],
"scripts": {
"build": "rm -rf lib && rm -rf types && node_modules/.bin/tsc && ./format_transpiled_code.sh",
"clean": "rm -rf lib && rm -rf types",
"lint": "eslint .",
"test": "jest"
},
"devDependencies": {
"@babel/core": "^7.23.6",
"@babel/preset-env": "^7.23.6",
"@babel/preset-typescript": "^7.23.3",
"@typescript-eslint/eslint-plugin": "^6.15.0",
"@typescript-eslint/parser": "^6.15.0",
"babel-jest": "^29.7.0",
"eslint": "^8.56.0",
"jest": "^29.7.0",
"typescript": "^5.3.3"
}
}