-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.56 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.56 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
{
"name": "bluemath",
"version": "0.5.0",
"description": "Math kernel in Typescript",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"build-test": "webpack --config webpack.test.config.js",
"watch-test": "webpack --watch --config webpack.test.config.js",
"build-perf": "webpack --config webpack.perf.config.js",
"watch-perf": "webpack --watch --config webpack.perf.config.js",
"build-deploy-docs": "rm -rf docs/* ../bluemathsoft.github.io/docs/* && typedoc --excludeNotExported --excludePrivate --out ./docs --theme doctheme/ --mode file --readme src/index.md --gaID \"UA-99857402-1\" && cp -r docs/* ../bluemathsoft.github.io/docs/",
"build-docs": "typedoc --excludeNotExported --excludePrivate --out ./docs --theme doctheme/ --mode file --readme src/index.md",
"deploy-tests": "(cp build/bluemath-test.js ../bluemathsoft.github.io/tests/)",
"prepare": "(cd src; tsc -p .)"
},
"keywords": [
"Math",
"Linear Algebra",
"Vector",
"Matrix"
],
"author": "Jayesh Salvi",
"license": "Apache-2.0",
"devDependencies": {
"@types/jquery": "^3.2.15",
"@types/qunit": "^2.0.31",
"awesome-typescript-loader": "^3.2.3",
"blueplot": "^0.1.1",
"source-map-loader": "^0.2.2",
"typedoc": "^0.9.0",
"typescript": "^2.5.3",
"webpack": "^3.8.1"
},
"dependencies": {
"@bluemath/common": "^0.2.2",
"@bluemath/geom": "^0.2.2",
"@bluemath/linalg": "^0.2.2",
"@bluemath/topo": "^0.2.2",
"set-blocking": "^2.0.0",
"string-width": "^2.1.1",
"yargs-parser": "^8.0.0"
}
}