forked from rfink/polyfit.js
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.06 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.06 KB
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
{
"name": "@sctg/polyfitjs",
"description": "Polynomial fitment library for javascript",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"author": "Ryan Fink, Ronan Le Meillat",
"version": "0.0.3",
"repository": {
"type": "git",
"url": "https://github.com/sctg-development/polyfitjs.git"
},
"bugs": {
"url": "https://github.com/sctg-development/polyfitjs/issues"
},
"licenses": [
{
"type": "MIT",
"url": "https://github.com/sctg-development/polyfitjs/raw/master/LICENSE"
}
],
"scripts": {
"test": "mocha",
"lint": "eslint index.ts --fix",
"build": "tsup index.ts --clean --dts --format esm"
},
"publishConfig": {
"access": "public",
"tag": "latest"
},
"devDependencies": {
"@eslint/js": "^9.19.0",
"eslint": "^9.19.0",
"mocha": "^11.1.0",
"should": "^13.2.3",
"ts-node": "^10.9.2",
"tslint": "^6.1.3",
"tsup": "^8.3.6",
"typescript": "^5.7.3",
"typescript-eslint": "^8.23.0"
},
"engine": "node >= 20"
}