-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
39 lines (39 loc) · 851 Bytes
/
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
{
"name": "swstats",
"version": "0.8.1",
"description": "Sliding window statistics",
"author": "David Gómez Matarrodona <[email protected]>",
"url": "https://github.com/owner/project/issues",
"email": "[email protected]",
"main": "index.js",
"license": "MIT",
"repository": "solzimer/swstats",
"keywords": [
"math",
"stats",
"statistics",
"slide",
"sliding",
"window",
"average",
"mode",
"frequency",
"count",
"sum",
"deviation"
],
"dependencies": {},
"devDependencies": {
"mocha": "^3.4.2",
"babel-preset-es2015": "^6.24.1",
"grunt": "^1.0.1",
"grunt-babel": "^6.0.0",
"grunt-browserify": "^5.0.0",
"grunt-contrib-clean": "^1.1.0",
"grunt-contrib-uglify": "^3.0.1",
"load-grunt-tasks": "^3.5.2"
},
"scripts": {
"test": "mocha"
}
}