-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 1.16 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
{
"name": "distance-metrics",
"version": "1.1.0",
"description": "A collection of utilities to calculate various distance metrics in pure javascript.",
"main": "build/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"compile:tsc": "tsc",
"compile:native": "neon clean && neon build --release",
"compile": "npm run compile:native && npm run compile:tsc",
"release:patch": "npm run compile && npm version patch && npm publish",
"release:minor": "npm run compile && npm version minor && npm publish",
"release:major": "npm run compile && npm version major && npm publish"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ethanwillis/distance-metrics.git"
},
"keywords": [
"distance",
"metrics",
"distance",
"distance-metric"
],
"author": "Ethan Willis",
"license": "AGPL-3.0",
"bugs": {
"url": "https://github.com/ethanwillis/distance-metrics/issues"
},
"homepage": "https://github.com/ethanwillis/distance-metrics#readme",
"dependencies": {
"@types/node": "^13.1.4",
"neon-cli": "^0.3.3"
},
"devDependencies": {
"typescript": "^3.7.4"
}
}