forked from cpankaj/keltnerchannel
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 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
46
{
"name": "keltnerchannel",
"version": "1.4.3",
"description": "Node JS implementation of keltner channel - technical indicator",
"main": "dist/index.js",
"scripts": {
"lint": "eslint src test",
"lint:fix": "eslint --fix src test",
"build": "npm run lint:fix && babel src -d dist",
"prepublishOnly": "npm test",
"test": "npm run build && mocha",
"build:clean": "rm -fr dist out"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cpankaj/keltnerchannel.git"
},
"keywords": [
"simple moving average",
"exponential moving average",
"bollinger band",
"volatility squeeze",
"keltner channel",
"technical analysis",
"technical indicator",
"moving average",
"stocks",
"trading",
"sma",
"ema"
],
"author": "Pankaj C",
"license": "MIT",
"bugs": {
"url": "https://github.com/cpankaj/keltnerchannel/issues"
},
"homepage": "https://github.com/cpankaj/keltnerchannel#readme",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-preset-env": "^1.6.1",
"chai": "^4.1.2",
"eslint": "^4.18.1",
"eslint-config-google": "^0.9.1",
"mocha": "^5.0.1"
}
}