forked from LGSInnovations/sigplot
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
92 lines (92 loc) · 2.59 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"name": "sigplot",
"description": "Advanced plotting for signal processing applications",
"version": "3.1.1",
"homepage": "http://github.com/spectriclabs/sigplot",
"main": "js/sigplot.js",
"files": [
"js",
"dist/bluefile-debug.js",
"dist/bluefile-minimized.js",
"dist/matfile-debug.js",
"dist/matfile-minimized.js",
"dist/sigplot-debug.js",
"dist/sigplot-minimized.js",
"dist/sigplot.plugins-debug.js",
"dist/sigplot.plugins-minimized.js"
],
"author": {
"name": "Spectric Labs, Inc.",
"email": "[email protected]",
"url": "http://www.spectric.com"
},
"repository": {
"type": "git",
"url": "git://github.com/spectriclabs/sigplot.git"
},
"bugs": {
"url": "https://github.com/spectriclabs/sigplot/issues"
},
"license": "apache-2.0",
"licenses": [
{
"type": "apache-2.0",
"url": "http://www.apache.org/licenses/LICENSE-2.0"
}
],
"scripts": {
"build": "grunt dist",
"prep": "grunt prep",
"generate-docs": "rm -rf ./doc/; node_modules/.bin/jsdoc --configure .jsdoc.json --verbose; cp ./fft-white.png doc/sigplot/$npm_package_version/",
"serve": "budo js/sigplot.js --live -p 1337 -v . -- --standalone=sigplot",
"test": "grunt test"
},
"dependencies": {
"budo": "^11.6.4",
"loglevel": "^1.4.1",
"lru": "^3.1.0",
"sigfile": "^0.1.9",
"spin": "0.0.1",
"tinycolor2": "^1.4.1",
"travis": "^0.1.1",
"underscore": "^1.9.2"
},
"devDependencies": {
"@babel/core": "^7.10.5",
"@babel/preset-env": "^7.10.4",
"babelify": "^10.0.0",
"bootstrap": "^5.0.0-beta3",
"catharsis": "^0.8.9",
"express": "^4.13.4",
"grunt": "^1.4.0",
"grunt-browserify": "^5.0.0",
"grunt-cli": "^1.3.2",
"grunt-closure-compiler": "^0.0.21",
"grunt-contrib-clean": "^1.1.0",
"grunt-contrib-compress": "^1.4.3",
"grunt-contrib-jshint": "^1.1.0",
"grunt-contrib-qunit": "^8.0.1",
"grunt-express-server": "^0.5.3",
"grunt-githash": "^0.1.3",
"grunt-http-server": "^2.1.0",
"grunt-jsbeautifier": "^0.2.13",
"grunt-jsdoc": "^2.2.1",
"grunt-karma": "^2.0.0",
"grunt-open": "^0.2.3",
"grunt-services": "^0.1.0",
"grunt-shell-spawn": "^0.3.12",
"grunt-text-replace": "^0.4.0",
"jasmine": "^3.1.0",
"karma": "^2.0.2",
"karma-chrome-launcher": "^2.0.2",
"karma-firefox-launcher": "^1.0.0",
"karma-jasmine": "^1.1.2",
"karma-qunit": "^2.1.0",
"marked": "^0.3.6",
"minami": "^1.2.3",
"qunit-assert-close": "^2.1.2",
"qunitjs": "^2.4.1",
"taffydb": "^2.7.3",
"underscore": "^1.9.2"
}
}