-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.29 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
{
"name": "m4th",
"version": "0.1.0",
"description": "Math stuff",
"repository": {
"type": "git",
"url": "https://github.com/hhelwich/m4th.git"
},
"license": "MIT",
"author": "Hendrik Helwich",
"main": "index.js",
"private": true,
"keywords": [
"matrix",
"decomposition",
"lu",
"lr",
"ud",
"cholesky",
"browser"
],
"scripts": {
"test": "./node_modules/.bin/grunt travis && ./node_modules/.bin/istanbul cover ./node_modules/.bin/jasmine-node --captureExceptions build && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js"
},
"dependencies": {
"ut1l": "0.2.0"
},
"devDependencies": {
"coveralls": "2.10.0",
"grunt": "0.4.4",
"grunt-banner": "0.2.2",
"grunt-browserify": "2.0.8",
"grunt-cli": "0.1.13",
"grunt-contrib-clean": "0.5.0",
"grunt-contrib-coffee": "0.10.1",
"grunt-contrib-connect": "0.7.1",
"grunt-contrib-copy": "0.5.0",
"grunt-contrib-uglify": "0.4.0",
"grunt-contrib-watch": "0.6.1",
"grunt-saucelabs": "5.1.2",
"istanbul": "0.2.7",
"jasmine-node": "2.0.0-beta4",
"docker": "0.2.10",
"esprima": "1.2.1"
}
}