-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathpackage.json
52 lines (52 loc) · 1.15 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
{
"name": "ssm",
"version": "0.8.0",
"description": "Inference for State Space Model (SSM)",
"bin": {
"ssm": "bin/install"
},
"repository": {
"type": "git",
"url": "git://github.com/standard-analytics/ssm.git"
},
"bugs": {
"url": "https://github.com/standard-analytics/ssm/issues"
},
"main": "index.js",
"preferGlobal": true,
"scripts": {
"install": "(cd src/C && make && make install && make clean)",
"test": "(cd src && python test_Cmodel.py && python test_Ccoder.py) && (cd tests && make test && make clean)"
},
"keywords": [
"State",
"Space",
"Models",
"Inference",
"Dynamical",
"systems",
"Statistics"
],
"author": "Sebastien Ballesteros <sebastien@standardanalytics.io>",
"contributors": [
{
"name": "Joseph Dureau"
}
],
"license": "GPLv3",
"dependencies": {
"mkdirp": "~0.3.5",
"clone": "~0.1.11",
"once": "~1.3.0",
"rimraf": "^2.2.6",
"underscore": "^1.6.0",
"tv4": "^1.0.16",
"async": "^0.2.10",
"binary-csv": "^0.1.7",
"commander": "^2.1.0",
"data-streams": "^0.1.1"
},
"devDependencies": {
"mocha": "~1.14.0"
}
}