-
Notifications
You must be signed in to change notification settings - Fork 65
/
Copy pathpackage.json
48 lines (48 loc) · 1.44 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
{
"name": "fmin",
"version": "0.0.4",
"description": "Unconstrained funcion minimization in Javascript",
"type": "module",
"keywords": [
"fmin",
"optimization",
"Nelder-Mead",
"Conjudate Gradient"
],
"license": "BSD-3-Clause",
"main": "build/fmin.js",
"jsnext:main": "index",
"homepage": "https://github.com/benfred/fmin",
"repository": {
"type": "git",
"url": "git+https://github.com/benfred/fmin.git"
},
"scripts": {
"pretest": "rm -rf build && mkdir build && json2module package.json > build/package.js && rollup -c",
"lint": "biome check --fix --max-diagnostics 50",
"test": "vitest run",
"test:watch": "vitest",
"prepare": "npm run test && uglifyjs build/fmin.js -c -m -o build/fmin.min.js",
"postpublish": "zip -j build/fmin.zip -- LICENSE README.md build/fmin.js build/fmin.min.js"
},
"devDependencies": {
"@biomejs/biome": "^1.9.0",
"json2module": "0.0",
"rollup": "^4.21.3",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-node-resolve": "^5.2.0",
"uglify-js": "^3.19.3",
"vitest": "^2.1.0"
},
"bugs": {
"url": "https://github.com/benfred/fmin/issues"
},
"directories": {
"example": "examples",
"test": "test"
},
"dependencies": {
"contour_plot": "^0.0.1"
},
"author": "Ben Frederickson"
}