-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.66 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
{
"name": "@palasimi/ipa-cluster",
"version": "1.2.0",
"description": "Cluster words with similar IPA transcriptions together",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc --declaration --declarationMap --sourceMap --strict --module commonjs --outDir build --target es6 src/index.ts scripts/demo.ts scripts/dataset.ts",
"check": "npm run format && npm run typecheck && npm run lint && npm run test:cov",
"dist": "npm run build && rm -rf dist && cp -r build/src dist",
"format": "prettier --check .",
"format:fix": "prettier --write .",
"lint": "eslint src test",
"lint:fix": "eslint --fix src test",
"test": "mocha",
"test:cov": "nyc mocha",
"typecheck": "tsc --noEmit"
},
"repository": {
"type": "git",
"url": "git+https://github.com/palasimi/ipa-cluster.git"
},
"keywords": [
"ipa",
"clustering",
"similarity",
"strings",
"linguistics",
"phonology",
"sound-change",
"parser"
],
"author": "Levi Gruspe",
"license": "GPL-3.0-or-later",
"bugs": {
"url": "https://github.com/palasimi/ipa-cluster/issues"
},
"homepage": "https://github.com/palasimi/ipa-cluster#readme",
"devDependencies": {
"@types/density-clustering": "^1.3.0",
"@types/mocha": "^10.0.1",
"@typescript-eslint/eslint-plugin": "^5.59.11",
"@typescript-eslint/parser": "^5.59.11",
"eslint": "^8.42.0",
"fast-check": "^3.10.0",
"mocha": "^10.2.0",
"nyc": "^15.1.0",
"prettier": "^2.8.8",
"ts-node": "^10.9.1",
"typescript": "^5.1.3"
},
"dependencies": {
"mnemonist": "^0.39.5"
},
"publishConfig": {
"access": "public"
}
}