forked from benfred/fmin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 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
49
50
51
{
"name": "fmin",
"version": "0.0.3",
"description": "Unconstrained funcion minimization in Javascript",
"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"
},
"jshintConfig": {
"esnext": true
},
"scripts": {
"pretest": "rm -rf build && mkdir build && json2module package.json > build/package.js && rollup -f umd -n fmin -o build/fmin.js -- index.js && rollup -f umd -n fmin_vis -o build/fmin_vis.js -- index_vis.js",
"test": "jshint src/*.js src/visualizations/*.js && tape 'test/**/*-test.js'",
"prepublish": "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": {
"contour_plot": "0.0.1",
"json2module": "0.0",
"rollup": "0.25",
"tape": "4",
"uglify-js": "2",
"jshint": "^2.8.0"
},
"bugs": {
"url": "https://github.com/benfred/fmin/issues"
},
"directories": {
"example": "examples",
"test": "test"
},
"dependencies": {
"contour_plot": "^0.0.1",
"json2module": "^0.0.3",
"rollup": "^0.25.8",
"tape": "^4.5.1",
"uglify-js": "^2.6.2"
},
"author": "Ben Frederickson"
}