-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
37 lines (37 loc) · 1.09 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
{
"name": "caiman",
"version": "0.2.0",
"description": "Times series data library",
"main": "index.js",
"author": "Andrey Kucherenko <andrey@kucherenko.org>",
"license": "MIT",
"scripts": {
"compile": "babel -d lib/ src/",
"prepublish": "yarn run compile",
"coverage": "nyc --require babel-core/register mocha tests/",
"test": "mocha --require babel-core/register tests/"
},
"dependencies": {
"moment": "^2.29.1",
"mongodb": "^3.6.9",
"shelljs": "^0.8.4"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-plugin-async-to-promises": "^1.0.5",
"babel-plugin-syntax-async-functions": "^6.13.0",
"babel-plugin-transform-async-to-generator": "^6.24.1",
"babel-plugin-transform-regenerator": "^6.26.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-polyfill": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-3": "^6.24.1",
"chai": "^4.3.4",
"mocha": "^9.0.0",
"nyc": "^15.1.0",
"proxyquire": "^2.1.3",
"sinon": "^11.1.1",
"sinon-chai": "^3.7.0",
"yarn-upgrade-all": "^0.5.4"
}
}