-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 811 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 811 Bytes
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
{
"name": "time-series",
"version" : "0.0.1",
"description": "A simple library for doing time-series analysis in Node.js.",
"author": "Rob Britton <rob@robbritton.com>",
"dependencies" : {
"coffee-script": "1.4.0",
"simple-statistics": "0.3.0",
"underscore": "*"
},
"devDependencies": {
"mocha": "*",
"chai": "*"
},
"scripts": {
"test": "SWIQ_ENV=test mocha --reporter nyan -t 5000 --bail --compilers coffee:coffee-script --require coffee-script --require mocha --colors --recursive test"
},
"repository": {
"type": "git",
"url": "https://github.com/robbrit/node-time-series"
},
"keywords": [
"statistics", "time series"
],
"license": "MIT",
"contributors": [
{
"name": "Rob Britton",
"email": "rob@robbritton.com"
}
]
}