-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
48 lines (48 loc) · 1.09 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": "luqr",
"version": "0.3.0",
"description": "LU, LDL, and QR Matrix Decomposer and Solver",
"main": "luqr.min.js",
"author": "themadcreator@github",
"license": "MIT",
"keywords": [
"matrix",
"ldl",
"lu",
"qr",
"decomposition",
"factorization",
"solve",
"linear"
],
"scripts": {
"test": "node_modules/.bin/mocha test",
"serve": "node_modules/.bin/http-server gh-pages"
},
"devDependencies": {
"chai": ">=2.x.x",
"coffee-script": ">=1.x.x",
"docco": ">=0.7.x",
"fs-extra": ">=0.6.x",
"gl-mat4": ">=1.x.x",
"gulp": "^3.8.11",
"gulp-bump": "^0.3.0",
"gulp-coffee": "^2.3.1",
"gulp-gh-pages": ">=0.5.x",
"gulp-git": "^1.2.1",
"gulp-header": "^1.2.2",
"gulp-mocha": "^2.0.1",
"gulp-rename": "^1.2.2",
"gulp-uglify": "^1.2.0",
"gulp-util": "^3.0.4",
"http-server": ">=0.8.x",
"katex": ">=0.2.x",
"marked": "^0.3.3",
"mocha": ">=2.x.x",
"ndarray": ">=1.x.x",
"run-sequence": "^1.1.0",
"uglify-js": ">=2.x.x",
"underscore": ">=1.8.x",
"vinyl-map": "^1.0.1"
}
}