-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.13 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
{
"name": "furlong",
"version": "0.3.0",
"description": "A zero-dependency Node and Javascript library for computing pairwise distances",
"author": "Seth Brown <software@seth-brown.net>",
"keywords": [
"statistics",
"distance",
"pairwise",
"euclidean",
"L2 norm",
"manhattan",
"taxicab",
"braycurtis",
"chebyshev",
"canberra"
],
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/**/*"
],
"scripts": {
"test": "jest",
"build": "tsc",
"prepublish": "npm run build",
"version": "npm run format && git add -A src",
"postversion": "git push && git push --tags"
},
"devDependencies": {
"@types/jest": "^29.2.4",
"@types/node": "^18.11.17",
"jest": "^29.3.1",
"ts-jest": "^29.0.3",
"typescript": "^4.9.4",
"prettier": "^2.8.1"
},
"repository": {
"type": "git",
"url": "https://github.com/seth-brown/furlong.git"
},
"licenses": [
{
"type": "BSD",
"url": "https://github.com/seth-brown/furlong/blob/master/LICENSE"
}
],
"publishConfig": {
"access": "public"
},
"dependencies": {}
}