forked from chdzq/ARPAbetAndIPAConvertor
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
40 lines (40 loc) · 890 Bytes
/
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
{
"name": "arpabet-and-ipa-convertor-ts",
"version": "1.0.3",
"repository": "https://github.com/tarling/arpabet-and-ipa-convertor-ts.git",
"contributors": [
{
"name": "chdzq",
"url": "https://github.com/chdzq"
},
"James Tarling <james.tarling@gmail.com>"
],
"license": "MIT",
"files": [
"dist/**/*"
],
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"lint": "eslint . --ext .ts",
"prepublish": "yarn build",
"test": "jest"
},
"devDependencies": {
"@types/jest": "^26.0.20",
"@typescript-eslint/eslint-plugin": "^4.15.2",
"@typescript-eslint/parser": "^4.15.2",
"eslint": "^7.20.0",
"jest": "^26.6.3",
"ts-jest": "^26.5.1",
"ts-node": "^9.1.1",
"typescript": "^4.1.5"
},
"keywords": [
"phonetics",
"typescript",
"ipa",
"arpabet"
]
}