-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
64 lines (64 loc) · 1.75 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
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"name": "smr",
"version": "0.12.6",
"description": "Streaming implementation of multiple regression.",
"main": "./smr.js",
"repository": {
"type": "git",
"url": "https://github.com/omphalos/smr.git"
},
"keywords": [
"machine",
"learning",
"linear",
"online",
"ml",
"algebra",
"multiple",
"regression",
"matrix",
"statistics",
"stats"
],
"license": "MIT",
"engine": {
"node": ">=0.8.17"
},
"author": "omphalos",
"contributors": [
"Ryan Marcus <ryan@rmarcus.info> (https://rmarcus.info)"
],
"scripts": {
"tape": "./node_modules/.bin/tape ./tests.js",
"lint": "./node_modules/.bin/minilint",
"cover": "./node_modules/.bin/istanbul cover ./tests.js",
"coveralls": "cat ./coverage/lcov.info | ./node_modules/.bin/coveralls",
"watch": "./node_modules/.bin/nodemon ./tests.js",
"count": "gzip -c smr.min.js | wc -c",
"test": "npm run lint; npm run tape; npm run cover; npm run zuul",
"bundle": "./node_modules/.bin/browserify smr.js -s smr > bundle.js",
"build": "npm run bundle; npm run minify; npm run count; rm bundle.js",
"zuul": "./node_modules/.bin/zuul -- tests.js",
"minify": "cat bundle.js | ./node_modules/.bin/uglifyjs > smr.min.js",
"release": "npm run build && npm run test && ./node_modules/.bin/bumpt"
},
"bugs": {
"url": "https://github.com/omphalos/smr/issues"
},
"homepage": "https://github.com/omphalos/smr",
"devDependencies": {
"browserify": "^13.0.0",
"bumpt": "0.0.4",
"coveralls": "^2.11.6",
"istanbul": "^0.4.2",
"minilint": "0.0.13",
"nodemon": "^1.8.1",
"tape": "^4.4.0",
"numeric": "^1.2.6",
"uglify-js": "^2.6.1",
"zuul": "^3.9.0"
},
"dependencies": {
"rref": "0.0.1"
}
}