-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 916 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 916 Bytes
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
{
"name": "@bluemath/optimize",
"version": "0.0.1",
"description": "Root finding and optimization routines",
"main": "lib/index.js",
"scripts": {
"build-test": "webpack --config webpack.test.config.js",
"watch-test": "webpack --watch --config webpack.test.config.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bluemathsoft/bm-optimize.git"
},
"keywords": [
"Optimization",
"Root",
"finding"
],
"author": "Jayesh Salvi",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/bluemathsoft/bm-optimize/issues"
},
"homepage": "https://github.com/bluemathsoft/bm-optimize#readme",
"devDependencies": {
"@types/qunit": "^2.0.31",
"awesome-typescript-loader": "^3.2.3",
"source-map-loader": "^0.2.3",
"typescript": "^2.5.3",
"webpack": "^3.8.1"
},
"dependencies": {
"@bluemath/common": "^0.2.2"
}
}