-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
45 lines (45 loc) · 1.16 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
{
"name": "divergence",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "nyc mocha --recursive --exit --timeout 180000 test/",
"coverage": "nyc report --reporter=text-lcov | coveralls",
"lint": "./node_modules/.bin/eslint src/*",
"now": "node src/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bkawk/divergence.git"
},
"author": "@bkawk",
"license": "MIT",
"bugs": {
"url": "https://github.com/bkawk/divergence/issues"
},
"homepage": "https://github.com/bkawk/divergence#readme",
"dependencies": {
"@solazu/technicalindicators": "^2.0.8",
"badgify": "^1.2.1",
"chai": "^4.1.2",
"chai-as-promised": "^7.1.1",
"leveldown": "^3.0.1",
"levelup": "^2.0.2",
"mocha": "^5.1.1",
"moment": "^2.22.1",
"promise-with-status": "^1.0.0",
"request": "^2.85.0",
"request-rate-limiter": "^1.0.2",
"sinon": "^5.0.1",
"ws": "^5.1.1"
},
"devDependencies": {
"coveralls": "^3.0.0",
"eslint": "^4.19.1",
"eslint-config-google": "^0.9.1",
"mocha-lcov-reporter": "^1.3.0",
"nyc": "^11.7.1",
"should": "^13.2.1"
}
}